The "Freeola Customer Forum" forum, which includes Retro Game Reviews, has been archived and is now read-only. You cannot post here or create a new thread or review on this forum.
if (eregi("Header.php", $PHP_SELF))
header("Location:error.htm");
This allows you to prevent people going to pages that are not intended to be viewed on their own. The method is:
"If the user is asking to view this page via their browser, redirect them to the 'error.htm' page".
Is such a method available in ASP, and if so, could someone give me some sample code??
Thanks.
if (eregi("Header.php", $PHP_SELF))
header("Location:error.htm");
This allows you to prevent people going to pages that are not intended to be viewed on their own. The method is:
"If the user is asking to view this page via their browser, redirect them to the 'error.htm' page".
Is such a method available in ASP, and if so, could someone give me some sample code??
Thanks.