Hi,
I get an error 500 when I try to open my web page with IE, but not with other Programs as Firefox or Safari. The problem I think is with the redirect in the index.php file, but I don't see the problem.
Here is the code:
<?
fcnX('home.php');
And the function is a Java script:
}
function fcnX($prUrl){
echo '<script language="javascript">' . "\n";
echo '<!--' . "\n";
echo 'document.location = \'' . $prUrl . '\';' . "\n";
echo '-->' . "\n";
echo '</script>' . "\n";
break;
exit;
}
Any ideas?
Thks!