i'm trying to include a file to authenticate using .htaccess , but it is never reading the file in. It just gives me a blank screen. I am sure the auth.php file works.
$result = mysql_db_query($GLOBALS["ezContentsDBName"], $strQuery);
while ($rsContent = mysql_fetch_array ($result))
{
if($rsContent["premier"] =='Y')
{
require ("auth.php");
}
any ideas?
Thanks in advance.