So close I can taste it!!
Ok..here it is guru's:
One database, two tables...need to pass 2 variables from table 1 (dropdown menu) to display page for table 2.
Here's what I have.
dropdown page - populates the dropdown GREAT... but no linking with variables to next page.
Need to put in <a href tag, but where and how? Variables that need passing - ID and Description.
Any advice, or pointing to the right direction much appreciated.
-------------------------- snippet --------------------------
print("
<table>
<TD width=\"10%\" VALIGN=\"top\" ALIGN=\"left\">");
$results = mysql_query("SELECT Description, ID FROM $dbtable ORDER BY Description");
print "<select name=\"Description\">\n" ;
while ( $row = mysql_fetch_row($results) )
print "<option>".htmlspecialchars($row[0])."</option>\n" ;
print "<option value=\"".$row[0]."\">".htmlspecialchars($row[0])."</option>\n";
print "</select>\n" ;
print("</TD>\n");
-------------------------- snippet --------------------------
Thanks folks!
Matt
PS: also a problem with netscape and IE... check this out... http://www.websystemz.com/WebStore/Shopping/categories/cat24.php
Add something to the cart in both IE and Netscape and NOTE the difference, ideas on this one?? I'm at a COMPLETE loss!