PHP Code:
$mydatabits = '';
$result = $db->query_read("SELECT * FROM " . TABLE_PREFIX . "tablename");
while ($myrow =$db->fetch_array($result))
{
eval('$mydatabits .= "' . fetch_template('mydatabit') . '";');
}
eval('print_output("' . fetch_template('mypage') . '");');
Create 2 templates:
'mydatabit':
Holeding the detail lines, maybe something like:
Code:
<tr><td>Username: $myrow[username]</td><td>Car: $myrow[car]</td></tr>
And a second template to hold the rest of the page, including the <table> tags etc. In between the <table> and the </table> you will place the variable $mydatabits