vb external and deluxe login together?
Hello all,
This is more of a PhP question. I have had vb external for a while now and it's great but I also want to use the deluxe login too.
Vb external needs this at the very beginning of the page.....
<?php
chdir('./forum');
require_once('./vBExternal.php');
?>
and deluxe login needs this at the very top ....
<?php
$curdir = getcwd ();
chdir('/path/to/your/forums');
require_once('/path/to/your/forums/global.php');
chdir ($curdir);
?>
So, how would I do this or can I have both these on the same page? If it can be done, could someone point me to a php tutorial on how to do this? Could it be done with includes?
Thank you in advance......
--------------- Added at 21:08 ---------------
Anyone?
|