First, I really hope I don't get beat down for asking this, but I'm willing to risk it in order to be pointed in the right direction so I can learn.
I have a .php script, and inside my PHP script I have written the code to connect to MySQL database.
Here's the question:
I have a table that will be used for a very simple display of food items. Currently I have:
<table width="1024" border="0" cellpadding="10" cellspacing="5" align="center">
<tr>
<td colspan="2"><font>Item Name</font></td>
<td colspan="2"><font>Item Name</font></td>
<td colspan="2"><font>Item Name</font></td>
</tr>
and it keeps going with other table row elements...
WHERE IT SAYS "ITEM NAME," HOW DO I INPUT CODE TO PULL DATABASE INFORMATION. The database name I have is "TEST" and I'd like each item name to list a different item from the "ITEM" table.
ANY HELP WOULD TRULY BE APPRECIATED.