Simple question, I cant find any documentation on displaying The output of my php script, that retreives data from mysql.
What i mean is, the script draws infro from the database, then displays it at the top of a new page, Is there a way to have that information displayed on a pre defined HTML table?
The page in question is http://www.thevirtualpilotplanner.com/searchform.html
Thank You!
Michael
Displaying MYSQL Results
Moderator: General Moderators
what do you mean with "pre-defined"? issufficient?
Code: Select all
...
while($row=mysql_fetch_row($result))
{
print('<tr class="searchRow">');
foreach($row as $value)
print('<td class="searchCell">'.$value.'</td>');
print('</tr>');
}
...