Forum Moderators: coopster
There are only 2 fields on this table, ID and ITEM.
I'd like it to print in this format:
apple
banana
orange
mango
$query = mysql_query("SELECT * FROM menu")
or die (mysql_error());
while ($data = mysql_fetch_array($query, MYSQL_ASSOC))
{
print_r ($data['ITEM']);
}