Jump to content

Recommended Posts

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

Link to comment
https://forums.phpfreaks.com/topic/55762-need-help-with-a-drop-down-menu/
Share on other sites

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.';
       }

?>

This thread is more than a year old. Please don't revive it unless you have something important to add.

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.   Restore formatting

  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...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.