View Single Post
Old Apr 25th, 2007, 3:00 PM   #10
Styx
Programmer
 
Join Date: Mar 2007
Posts: 39
Rep Power: 0 Styx is on a distinguished road
could you give an example perhaps?

Here's what I'm thinking based on this:
[php]<?php
if (isset($_POST['test']) && $_POST['test'] == 'false')
{
// process form
// to know the difference between whether it was the first submission or
// the second submission, you'd have to check something such as the database
// otherwise, there's no difference
}
<form method="post">
<input type="hidden" name="test" value="false">
<input type="submit" name="submit" value="Submit">
</form>[/php]
Styx is offline   Reply With Quote