Posted by Siv Hansen on 10/13/90 11:29
Zoe Brown wrote:
> I have a php script which includes a form. The form is submitted to itself
> and I need the php page to know if it has a form. If the form has been
> submitted the page will display differently.
>
> How do I check to see if a form has been posted and is there an easy way to
> loop through all the posted values and spit out their names and the value ?
>
> Zoe
>
>
You name your submit button (eg submit) and checks if $_POST['submit']
has been set, something like this
if(isset($_POST['submit'])){
// do something
}else{
//display form
}
Navigation:
[Reply to this message]
|