Great, that was it...I guess it was just too sloppy for its own good.
Now, I have another question...I cannot seem to extract the date/time properly.
Here is my query:
Code:
// Get Recent Articles
$lastarticle = $DB_site->query("
SELECT *
FROM thread
WHERE forumid IN (252,253,254,255,256,257,258,259,260,261,262,263,264)
ORDER BY dateline DESC
LIMIT 10
");
while ($lastarticles = $DB_site->fetch_array($lastarticle))
{
eval('$library_lastarticle .= "' . fetch_template('library_lastarticle') . '";');
}
$lastarticlesdate = vbdate($vboptions['dateformat'], $lastarticles['dateline']);
$lastarticlestime = vbdate($vboptions['timeformat'], $lastarticles['dateline']);
// Get Recent Articles
And here is the template it feeds into:
PHP Code:
<table border="0" width="100%" bordercolor="#111111">
<tr>
<td class="alt1Active" width="70%" align="left"><span class="smallfont"><a href="showthread.php?$session[sessionurl]goto=lastpost&t=$lastarticles[threadid]">$lastarticles[title]</a></span></td>
<td class="alt1Active" width="20%" align="left"><span class="smallfont"><a href="member.php?$session[sessionurl]find=lastposter&t=$lastarticles[threadid]">$lastarticles[lastposter]</a></span></td>
<td class="alt1Active" width="10%" align="left"><span class="smallfont">$lastarticlesdate</span></td>
</tr>
</table>
Any ideas on where I screwed up extracting the date information? I'm not using the time information yet, but may want to soon.
Thanks again for your help!