View Full Version : How do I parse this on the index.php
Prince
10-31-2001, 06:26 PM
<? include("last10.php"); ?>
If I understand correctly you cannot put this call into a template, right?
So, where do I add this to get it to display on my main VB page?
Can I just include it in the index.php? If so, where?
Thanks!
JamesUS
10-31-2001, 06:28 PM
If you look in your 'phpinclude' template, you can see an example of how to do an include - just replace the file name with last10.php and uncomment the lines (remove the // from the beginning of the lines).
If you're still stuck post back and I'll post the code for you.
Prince
10-31-2001, 06:38 PM
Originally posted by JamesUS
If you look in your 'phpinclude' template, you can see an example of how to do an include - just replace the file name with last10.php and uncomment the lines (remove the // from the beginning of the lines).
If you're still stuck post back and I'll post the code for you.
Okay, I am looking at the phpinclude template, but what am I supposed to do?
I want to parse the "last ten" at the bottom of my main VB page.
???
Prince
10-31-2001, 08:04 PM
I tried using this in the phpinclude template:
ob_start();
require("/path/to/include/file"); <--- this I had set to my path
$file = ob_get_contents();
ob_end_clean();
and the VB does not load.
vBulletin® v3.8.12 by vBS, Copyright ©2000-2024, vBulletin Solutions Inc.