I want to get a list of categories from mysql:
$categories = 'SELECT * FROM categories ORDER BY name ASC';
and have it listed in a form something like:
<form action="category.php" method="post">
<select>
<option>from categories go here</option>
<option>from categories go here</option>
</select>
</form>
Once I select the options from the category section post that option in a different databse.