Quote:
Originally Posted by Michael Morris
You must run the query BEFORE you eval the template. These statements:
Code:
eval('$navbar = "' . fetch_template('navbar') . '";');
eval('print_output("' . fetch_template('BAN') . '");');
Should be the last two in your code. Whenever print_output is called it issues an exit - you never come out of that eval statement and never reach the query.
|
I
love you.
Edit:
How can I display an array? IE: Display all the ban id's and say the reason.