So can I assign a variable to this part of the scritp and then call that variable in a template?
PHP Code:
{
echo "<tr>";
for($i = 0; $i < mysql_num_fields($result); $i++)
{
echo "<td>" . $row[$i] . "</td>";
}
echo "</tr>";
}
echo "</table>";
I tried adding this to my phpinclude_start template, so I could call the variable in my templates and it worked, but I would get random database errors I am assuming from too many mysql connections being as it was running the query everytime that ANY page was loaded.
PHP Code:
ob_start();
include("postcountdate.php");
$postcount = ob_get_contents();
ob_end_clean();
I guess my problem is defining a php variable so it can be called in a template. Thanks for the help.