在Chrome或IE下無法正確加載JS和PHP腳本。我正在使用FrontPage 2003(SP-3)開發支持視頻遊戲開發的家庭企業網站。未在Chrome或IE8中加載JS和PHP腳本
<?PHP
if(strstr($_SERVER["HTTP_USER_AGENT"],"MSIE")==false) {
header('Content-type: text/javascript');
header("Content-Disposition: inline; filename=\"register.js\"");
} else {
header("Content-type: text/force-download");
header("Content-Disposition: attachment; filename=\"register.js\"");
} else {
<Location register.js>
ForceType ('application/x-httpd-php')
</Location>
}
require_once("./include/membersite_config.js");
if(isset($_POST['submitted']))
{
if($fgmembersite->RegisterUser())
{
$fgmembersite->RedirectToURL("thank-you.html");
}
}
?>
第1步:不要使用FrontPage。 – AlienWebguy
你的代碼包含痛苦明顯的語法錯誤。 PHP會精確地告訴你它們在哪裏出現。請在向Stack Overflow發佈新問題之前嘗試修復簡單的問題。 – meagar