Jump to content

Drop-down Form in PHP/MySQL


steves93

Recommended Posts

Is there an efficient way to have two drop-downs on one page, with the selection list in the second dependent on the selection in the first?  For example, suppose my SQL data is:

 

CATEGORY          PRODUCT

------------          -----------

fruit                  apple

fruit                  orange

fruit                  banana

vegetable          celery

vegetable          carrot

vegetable          onion

 

And I want a drop-down with two choices: fruit and vegetable.  Immediately beneath that drop-down, I want another drop-down that displays choices apple, orange, banana if "fruit" is selected above, but celery, carrot, onion if vegetable is selected.

 

I've been messing around with $_SERVER['PHP_SELF'], but frankly, am too inexperienced to have made it work.

 

Thanks.

 

Steve

Link to comment
Share on other sites

i would just do this.

 

Just have a form with a list of fruit.

 

and when the person hits "submit" you'd do something like this.

 


<?php
$product = $_POST['producttype'];

if($product =='apple'){
$category= "fruit";
}
elseif($product =='carrot'){
$category= "vegetable";
}
?>

 

this you can just insert product and category into your database. not sure if this helps. I know 2 drop downs can be done, I just don't know how.

Link to comment
Share on other sites

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.