Posted by Jay Blanchard on 01/03/06 15:37
[snip]
Hi can any one show me how make another form appear below another once the
1st form has been submitted.
[/snip]
post to PHP_SELF and test for population of original form parts
if('' != $_POST['name'] etc.){
echo all of the other form parts;
}
[Back to original message]
|