Hi Dismounted, actually I have my server setup to parse PHP inside of .html pages too... so I can run PHP code inside my SSI files without issues.
The .ssi in the filename is just he naming convention I've always used... but it could also be header.php just the same.
--------------- Added [DATE]1192480701[/DATE] at [TIME]1192480701[/TIME] ---------------
Quote:
Originally Posted by Awjvail
I doubt this will work, but its a start:
PHP Code:
<?php
If ($vbulletin->userinfo['userid']!=0)
{
echo "logged in link here";
} else {
echo "register link here";
}
?>
|
Thanks Awjvail, I'll give this a try.