Instruct ICC wrote:
From your rough code, I'd say the OP always needs the select block
(just remove the "else" keyword and keep the block) for the current info
at the present page refresh/load. But I'd like clarification on how the
OP thinks about it.
That's close, i think. But the select isn't necessary if the user has
submitted a post because, either way, $first & $last will be set to the
latest values.
The problem that i see is here:
if (isset($_POST))
This will always return TRUE. It should rather be:
if (isset($_POST['name_of_your_submit_btn']))
or some other form element, at least.
I don't know if this was simply because it was a rough draft of the code
or even if it's the cause of the problem (which i still don't quite
understand) but, anyway ...
brian
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php