Jump to content

marcon3001

New Members
  • Posts

    1
  • Joined

  • Last visited

    Never

Profile Information

  • Gender
    Not Telling

marcon3001's Achievements

Newbie

Newbie (1/5)

0

Reputation

  1. Hey there, I am having the same issue...also, when you create the pulldown dynamically, where is the selected value set to a variable??  Here is the code DreamW. creates for my pulldown: <select name="select2">           <?php do {  ?><option value="<?php echo $row_rsFirstName['FirstName']?>"><?php echo $row_rsFirstName['FirstName']?></option>           <?php } while ($row_rsFirstName = mysql_fetch_assoc($rsFirstName));   $rows = mysql_num_rows($rsFirstName);   if($rows > 0) {       mysql_data_seek($rsFirstName, 0);   $row_rsFirstName = mysql_fetch_assoc($rsFirstName);   } ?>         </select> rsFirstName being just a recordset of all the firstnames  in my database table.  I just need to know where the form variable is being set up there...??? -thanks
×
×
  • 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.