aftab_jii Posted June 15, 2007 Share Posted June 15, 2007 can someone please help me creating a check for the following drop-down: <tr> <td id="text">Salesman: *</td> <td> <select name="Salesman"> <option selected>Choose a salesman</option> <option value="leanardo@gmail.com">Leanardo</option> <option value="cane@gmail.com">Cane</option> <option value="josef@gmail.com">Cane</option> </select></td> </tr> i have tried something like this: if (isset($_REQUEST['salesman'])="Choose a salesman") { $error = 'Please choose the appropriate salesman.<br>'; } else { $salesman = ($_REQUEST['salesman']); } but its not seem to be working Quote Link to comment https://forums.phpfreaks.com/topic/55762-need-help-with-a-drop-down-menu/ Share on other sites More sharing options...
pocobueno1388 Posted June 15, 2007 Share Posted June 15, 2007 Change this: <?php if (isset($_REQUEST['salesman'])="Choose a salesman") { $error = 'Please choose the appropriate salesman. '; } else { $salesman = ($_REQUEST['salesman']); } ?> to: <?php if (isset($_POST['salesman']) == "Choose a salesman") { $error = 'Please choose the appropriate salesman.'; echo $error; } else { $salesman = $_POST['salesman']; echo 'You have chosen '.$salesman. ' to be your salesman.'; } ?> Quote Link to comment https://forums.phpfreaks.com/topic/55762-need-help-with-a-drop-down-menu/#findComment-275502 Share on other sites More sharing options...
aftab_jii Posted June 15, 2007 Author Share Posted June 15, 2007 now it gives me an error no matter if the salesman is selected or not Quote Link to comment https://forums.phpfreaks.com/topic/55762-need-help-with-a-drop-down-menu/#findComment-275512 Share on other sites More sharing options...
chigley Posted June 15, 2007 Share Posted June 15, 2007 <?php if (isset($_REQUEST["salesman"]) && $_REQUEST["salesman"] != "Choose a salesman") { $error = "Please choose the appropriate salesman.\n"; } else { $salesman = $_REQUEST["salesman"]; } ?> Quote Link to comment https://forums.phpfreaks.com/topic/55762-need-help-with-a-drop-down-menu/#findComment-275513 Share on other sites More sharing options...
aftab_jii Posted June 15, 2007 Author Share Posted June 15, 2007 i managed to fix it.. thankyou for the quick response Quote Link to comment https://forums.phpfreaks.com/topic/55762-need-help-with-a-drop-down-menu/#findComment-275525 Share on other sites More sharing options...
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.