Hi All,
Have a problem with Passing Values from multiple forms to another page.
Two pages are page1.php and page2.php.
page1.php has two forms as follows:
<form name="frmBusInf" action="page2.php" method=POST>
Name: <input name="busName" type="text" value="" size="45">
</form>
<form name="frmBusUpdate3" action="page2.php" method=POST>
Phone: <input name="busPhone" type="text" size="58" value="">
<input type="submit" name="Add" value="Update">
</form>
Now how do I get both field values in the next page after clicking submit button?