|
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]
|