I originally had it set up like this and it displays all the records (
http://www.thekryptonian.com/smallville.php)
PHP Code:
<select onChange="location=options[selectedIndex].value;">
<option selected> Choose an Ep </option>
<?
$result = mysql_query("SELECT * FROM smallville_episode_guide ORDER BY id ASC",$db);
$php_self = $_SERVER['PHP_SELF'];
while ($myrow = mysql_fetch_array($result)) {
printf("<option value=\"%s?action=episodeguide&episode=%s\">---%s - %s</option> \n", $php_self, $myrow['id'], $myrow['id'], $myrow['episode_name']);
}
?></select>
I just need to find out how to make that code work with vB cause its not!