Thread: Website attacks
View Single Post
Old 11-14-2005, 02:37 PM
Aaron Aaron is offline
Real Estate Webmasters Staff
 
Join Date: Jun 2005
Location: Nanaimo
Posts: 16,770
Aaron is on a distinguished road
Send a message via MSN to Aaron
Default Re: Website attacks

Like this ...
HTML
Code:
<input type="submit" name="submit" value="Submit" />
Then The PHP
Code:
if (isset($_POST['submit']) && $_POST['submit'] == "Submit" )
Of Course this is not the only check I would do server side, but it is a start.
Reply With Quote