Log in

View Full Version : help with php include?


lukemax
02-17-2007, 08:30 PM
Well, I'm trying to include a php page (www.lvasp.com/quotes.php) into my FAQ page (faq.php). So I added a plugin (global_start from the drop-down list), placed this in
ob_start();
include('../quotes.php');
$includedphp = ob_get_contents();
ob_end_clean()


And in my FAQ template I have this where my output should be.

$includedphp

Nothing soo far