I want to embed a html page into a php file so that ONLY registered members can see the page, not anyone who is unregistered or logged out.
Does anyone know how this can be done ?
thanks
Does anyone know how this can be done ?
thanks
Welcome to the vBulletin support forums! In our community forums you can receive professional support and assistance with any issues you might have with your vBulletin Products.
Useful Links for Guests:
If you are having problems posting in the relevant areas for your software, please see this topic.
<?
if (!isset($bbuserid)) {
include(/path/to/html/file.html);
} else {
print "You need to login or register to view this page... ";
}
?>
Comment