Posted by Art on 04/24/07 03:59
Can anyone assist?
I'm trying to use a conditional statement for posting a form with php. The
problem i'm having is everytime I hit the submit button, i have to hit it a
second time to get the form to post. I've checked the variable $holdchk and
see that it's coming back as "0". Has anyone experienced this problem?
<?php
if ($holdchk == 0 ){
echo "<form method=\"POST\" action=\"someform.php\">";
}
if ($holdchk == 1 ){
echo "<form method=\"POST\" action=\"otherform.php\">";
}
?>
Thanks Art
Navigation:
[Reply to this message]
|