Quote:
Originally Posted by TheSpecialist
Put it in the PHP file, instead of using echo/print use variables, then just put the variable in the template. If that is too much work, I think you can use something like this:
PHP Code:
ob_start();
// All your PHP you want in the template here
$above = ob_get_contents();
ob_end_clean();
Then putting $above in your template would show all the PHP.
|
Thanks Alot TheSpecialist! Ill try this out. Where would I put this coding you have above? Anywhere within the .php file?
I tried it and it didnt work. How do I delete a template that I just created in the ACP? I dont see an option for it. I just want to get rid of it. Ill make my own .php files for the news feeds. Thanks