Quote:
Originally posted by Dark_Wizard
The <tr> is there in the line:
PHP Code:
echo "<table>\n<tr>\n";
|
I know, there is a <tr> in your "Non Template" code.
But, you are missing that <tr> in the "template code".
This code from your gallery template:
PHP Code:
<table border="0" cellspacing="1" cellpadding="3"width="100%" align="center">
$gallerybits
</table>
Should look like this:
PHP Code:
<table border="0" cellspacing="1" cellpadding="3"width="100%" align="center">
<tr>
$gallerybits
</table>