I am trying to add an non vbulletin page into a vBulletin template. I really am extremely new to php, but this is what I have so far:
PHP Code:
<?php
require( "global.php" );
eval("dooutput(\"".gettemplate('headinclude')."\");");
eval("dooutput(\"".gettemplate('header')."\");");
include ("mignews3.php");
eval("dooutput(\"".gettemplate('footer')."\");");
?>
It does not works as it can't get past the first eval line. So far all it does is includes the "headinclude" template and then stops.
Please help - thanks.