logout';
exit();
}
}
// If valid cookie and not logged in, find out if logged in or not
if(isset($_COOKIE["ava_username"]))
{
// Store all cookie data in variables
$user = $_COOKIE['ava_username'];
$code = $_COOKIE['ava_code'];
$userid = intval($_COOKIE['ava_userid']);
}
// Include the template
$string = $template_url;
if(!stristr($string, 'http') === FALSE) {
echo '#01 You have entered an invalid template url';
exit();
}
if (file_exists('.'.$template_url.'/index.php')) {
include ('.'.$template_url.'/index.php');}
else {echo '#02 You have entered an invalid template url'; }
ob_end_flush();
?>