Welcome to Dream.In.Code
Getting PHP Help is Easy!

Join 136,500 PHP Programmers for FREE! Get instant access to thousands of PHP experts, tutorials, code snippets, and more! There are 1,756 people online right now. Registration is fast and FREE... Join Now!




how to create drop down list in php

 
Reply to this topicStart new topic

how to create drop down list in php, i m new to php , i want to create a drop down menu which contain other

zair
3 Feb, 2008 - 07:56 AM
Post #1

New D.I.C Head
*

Joined: 3 Feb, 2008
Posts: 1

smile.gif
User is offlineProfile CardPM
+Quote Post

Mike007
RE: How To Create Drop Down List In Php
3 Feb, 2008 - 11:05 AM
Post #2

D.I.C Head
Group Icon

Joined: 30 Aug, 2007
Posts: 205


Dream Kudos: 75
My Contributions
Looks to me like a HTML question more than it is a PHP one, but you do it something like this:

CODE

<select name="mydropdownlist">
<?php
    $options = array('option1' => 'option 1'
                 'option2' => 'option 2'
                 'option3' => 'option 3');

    foreach($options as $value => $caption)
   {
        echo "<option value=\"$value\">$caption</option>";
   }
?>
</select>


In HTML you use the select tag name to create a drop down list and the option tag to create the values that will go into that list. In PHP I just used the associative array to create a list of values then looped through all of them and outputed them in HTML.

Enjoy smile.gif .

This post has been edited by Mike007: 3 Feb, 2008 - 11:10 AM
User is offlineProfile CardPM
+Quote Post

aj32
RE: How To Create Drop Down List In Php
3 Feb, 2008 - 11:14 AM
Post #3

D.I.C Addict
Group Icon

Joined: 30 Aug, 2007
Posts: 577



Thanked: 2 times
Dream Kudos: 675
My Contributions
If you are able to use HTML or DHTML, this program is very useful:

http://www.coffeecup.com/free-dhtml/

I don't know of any like that for php.

Cheers, Aj32! smile.gif

This post has been edited by aj32: 3 Feb, 2008 - 11:14 AM
User is offlineProfile CardPM
+Quote Post

Fast ReplyReply to this topicStart new topic
Time is now: 12/2/08 08:14PM

Live PHP Help!

PHP Tutorials

Reference Sheets

PHP Snippets

DIC Chatroom

Bye Bye Ads

Monthly Drawing

Thumb Drive

Top Contributors

Top 10 Kudos This Month