Search Results

0
votes

How to make ‘pretty urls’ work in php hosted in IIS?

We use the free version of ISAPI_Rewrite. It uses similar syntax to mod_rewrite, so if you're familiar with that you may have an easier ti …
2
votes

Avoid Race Conditions in PHP on Submit: Please do not click submit more than once!

As others have noted, you can disable the button. I like server-side checks better, though - JS may be disabled, user might hit refresh (although if you're properly using POST that will generate a …
1
vote

Open source KB/support web application suggestions

RT has a good FAQ Manager (called, unsurprisingly, RTFM) - a full RT install may be a little overkill for what you need, but apparently you …
0
votes

Stop Post Data From Different Domain PHP

If you're looking for a quick-and-dirty approach, you can check the REFERER header. If you really want to make sure that the form was fetched from your site though, you should generate a to …
1
vote

Can I get feedback on this PHP function that tests if a user has signed up?

Try this: $conn = get_db_conn(); # should reuse a connection if it exists # Have MySQL count the rows, instead of fetching a list (also prevent injection) $res = mysql_query(sprint …