Guest bishop2001 Posted June 13, 2014 Posted June 13, 2014 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... Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.