If it works in another php file then it works with vB as well, so your problem is to ave it echo in the template.
maybe summit like this:
In your template:
PHP Code:
<select onChange="location=options[selectedIndex].value;">
<option selected> Choose an Ep </option>
$options
</select>
In your php file:
PHP Code:
$result = mysql_query("SELECT * FROM smallville_episode_guide ORDER BY id ASC",$db);
$php_self = $_SERVER['PHP_SELF'];
while ($myrow = mysql_fetch_array($result)) {
$options = "<option value='%s?action=episodeguide&episode=%s'>---%s - %s</option> \n", $php_self, $myrow['id'], $myrow['id'], $myrow['episode_name'];
}
Basically just stick all your episode query results into a variable, and have this echo in the template....