As I've said in another post I am constructing an episode guide that is control via vB's admin CP. I have the form set up to add information to the database, but I am not working on an edit feature. The problem I've hit right now is listing the information. I want to list it in a jump menu.
Something to the effect of:
PHP Code:
$episodejumpbits=<option value="$php_self?do=modify&id=$jump[id]">$jump[id] - $jump[episode_name]</option>;
<select onChange="location=options[selectedIndex].value;">
<option selected>Choose an Ep</option>
$episodejumpbits
</select>
I would want it to scroll through the records and list them all so that they could be selected to be edited. Any suggestions?