View Single Post
07-17-2005, 03:30 PM
#10
Koobi is offline Koobi
Koobi's Avatar
Status: Member
Join date: Apr 2005
Location:
Expertise:
Software:
 
Posts: 312
iTrader: 0 / 0%
 

Koobi is on a distinguished road

  Old

i would replace this:
PHP Code:
if(isset($_POST['submit'])) 
with this:
PHP Code:
if('go!' == $_POST['submit']) 
otherwise your form will be submitted for any $_POST['submit'] value which bots can do by sending headers.