Jump to content

Recommended Posts

Guest bishop2001
Posted

Greetings,

i have 2 forms and 1 submit button which works fine. When i add 3rd form it doesn't work anymore. Any suggestions please?

This is the working 2 form version below. thanks

 

PHP Code:

<tr>

<form name="jumpp" method="post">

<select name="menu">

<option value="New York">New York(10.8.14.10)</option>

<option value="New York">New York(1.3.15.41)</option>

</select>

 

<span style="font-weight:bold">Date</span>

<form name="date" method="post">

<select name="date">

<option selected disabled hidden value=''></option>"

<option value=<?php echo $TODAY ?>><? echo $TODAY ?></option>

<option value=<?php echo $YESTERDAY ?>><? echo $YESTERDAY ?></option>

 

<input type="submit" value="go">

</select

<tr>

<input type="reset" value="reset" />

</tr>

</form>

</form>

<tr>

 

<?

if (isset($_POST["menu"]) and ($_POST["date"])){

echo $_POST["menu"]."<br>";

echo $_POST["date"];

 

}

?>

 

Continue reading...

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...