Results 1 to 9 of 9

Thread: Drop Down Results

Threaded View

  1. #1

    Thread Starter
    Frenzied Member
    Join Date
    Jun 2003
    Location
    Auckland
    Posts
    1,139

    Drop Down Results

    I have a sql qyery which i want to add the results to a drop down menu.

    PHP Code:
    <?php
    $link 
    mysql_connect (localhostuserpass);
    mysql_select_db (db12816e);
    $result mysql_query ("SELECT name From table");
    while (
    $row mysql_fetch_array($result));
    {
    ?>
    <select NAME="venue" size="1">
    <option value="something i guess">results</option>


    how do i get the results in the drop down menu???
    Last edited by kiwis; Apr 18th, 2004 at 09:49 PM.

Posting Permissions

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



Click Here to Expand Forum to Full Width