Joe Pimms
07-30-2008, 03:09 AM
hello i have a question about linking an external website into a template, im wanting to to display the content from my stat site to display it in to a custom vbulletin template
<php include_once("http://www.xxx.com/xxx/xxx.php"); ?>
i use this on my index page on my site and it displays every thing for me...
so how would i import this code into vb ?
i have this so far
<?php
// By Joe Pimentel,
error_reporting(E_ALL & ~E_NOTICE);
define('THIS_script', 'XXXXXX');
require_once('./global.php');
$navbits = array($vbulletin->options['xxx_title']);
$navbits = construct_navbits($navbits);
eval('$navbar = "' . fetch_template('navbar') . '";');
eval('print_output("' . fetch_template('XXXXXX') . '");');
?>
Please help
<php include_once("http://www.xxx.com/xxx/xxx.php"); ?>
i use this on my index page on my site and it displays every thing for me...
so how would i import this code into vb ?
i have this so far
<?php
// By Joe Pimentel,
error_reporting(E_ALL & ~E_NOTICE);
define('THIS_script', 'XXXXXX');
require_once('./global.php');
$navbits = array($vbulletin->options['xxx_title']);
$navbits = construct_navbits($navbits);
eval('$navbar = "' . fetch_template('navbar') . '";');
eval('print_output("' . fetch_template('XXXXXX') . '");');
?>
Please help