Quote:
Originally Posted by CyberRanger
You need to use two templates. The first one formats the individual records. The second one outputs the final result.
PHP Code:
$result = $db->query_read("SELECT * FROM " . TABLE_PREFIX . "jobs WHERE 1 = 1 ");
if ($db->num_rows($result) > 0)
{
while ($sub = $db->fetch_array($result))
{
exec_switch_bg();// alternate bgcolor
eval('$wall .= "' . fetch_template('job_add_request_subbit') . '";');
}
eval('$wall .= "' . fetch_template('job_add_request') . '";');
}
The template 'job_add_request_subbit' would have something like:
HTML Code:
<div>$result['test']</div>
while the template 'job_add_request' would be something like:
HTML Code:
My Results
{$wall}
|
Thanks.

You made one mistake thoo.

It should be $sub in the templates. Not $result.