Results 1 to 2 of 2

 

Thread: php populate drop down list from MySQL

  1. #1
    accelerator's Avatar
    Online shopping rocks!

    Status
    Offline
    Join Date
    Nov 2004
    Location
    England
    Posts
    3,034
    Thanks
    54
    Thanked 183 Times in 164 Posts


    Hi All

    Can anyone provide a link for a decent tutorial to do the following php task:

    I want to populate a drop down list from my list of merchants in a MySQL database. The Merchant Name will be visible to the user, and the Merchant Id will be the value that is selected.

    Thanks for any help.

  2. #2
    Registered User

    Status
    Offline
    Join Date
    Feb 2006
    Location
    Gillingham
    Posts
    510
    Thanks
    0
    Thanked 4 Times in 1 Post
    PHP Code:
    Connect to database etc
    <form>
    <select>

    <?php 
    $sql
    ="SELECT id,name FROM merchants";
    $result =mysql_query($sql);
    while (
    $data=mysql_fetch_assoc($result)){
    ?>
    <option value ="<?php echo $data['id'?>" ><?php echo $data['name'?></option>
    <?php ?>

    </select>
    </form>
    Last edited by Donk; 07-04-08 at 04:48 PM. Reason: wrong field name
    They came for my 404 and I said nothing



Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. Best PHP & MySQL
    By Stellar in forum Programming
    Replies: 13
    Last Post: 28-07-06, 04:27 PM
  2. php scripts to display data from MySql
    By accelerator in forum Programming
    Replies: 3
    Last Post: 03-01-06, 02:26 AM
  3. Anyone anygood with xml, php, mysql and Affiliate Window
    By AnnonnyMouse in forum Affiliate Marketing Lounge
    Replies: 1
    Last Post: 23-09-04, 11:00 AM
  4. php and mysql search
    By andy_jacko in forum Programming
    Replies: 6
    Last Post: 13-09-04, 12:12 PM
  5. PHP & MYSQL
    By Affiliates4u in forum Programming
    Replies: 8
    Last Post: 13-01-03, 08:12 PM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
To Top

Content Relevant URLs by vBSEO 3.5.0 RC2