First write your query, asign it to $query or put it directly into the spot I have $query. Then you put this...
<?
while ($jump_name = mysql_fetch_array($query)) {
$jump_title = $jump_name['column'];
echo '<option>' . $jump_title . '</option>';
}
?>
I assume you want a form drop down. So the complete script might looking something like this...
<form name="form" method="post" action="action_here.php">
<select name="jump_menu">
<?
mysql_connect ('localhost', 'user', 'pass');
mysql_select_db ('database');
while ($jump_name = mysql_fetch_array($query)) {
$jump_title = $jump_name['column'];
echo '<option>' . $jump_title . '</option>';
mysql_close();
}
?>
</select>
</form>
That will priont out <option>title here</option> as many times as it finds it in the database...
And of course you'll need a submit button.
EDIT: I had forgotten one thing, now it's fixed.