Thanks, will give that a try.
(I suppose you saw my error in stating that the multiple "do" functions were put in the template, I meant they were put in the php file, each one with a different template used.)
--------------- Added [DATE]1381803115[/DATE] at [TIME]1381803115[/TIME] ---------------
Ok, there is a reason I dont release mods here. Cous I seem to struggle with the obvious lol.
I have registered the variable,...
$templater->register('history', $history);
I thought I would just start simple and just have 1 row in my database. From there I will expand on it once I can get a simple read done.
This is my php query. (kinda found it while searching the forums and modified it to my purpose)
Code:
$result = $db->query_read("SELECT * FROM " . TABLE_PREFIX . "history");
while ($l_history = $vbulletin->db->fetch_row($result)){
$history[] = $l_history[1];
}
But using {vb:raw history} in my template produces a blank whereas there is actual data in the database fields.