-2

JS 和 PHP 脚本在 Chrome 或 IE 下无法正常加载。我正在使用 FrontPage 2003 (SP-3) 开发家庭企业网站以支持视频游戏开发。

<?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");
   }
}

?>
4

1 回答 1

2
} else {
 <Location register.js>
      ForceType ('application/x-httpd-php')
</Location>
}

那不是有效的 PHP ......(你会很好地听取 AlienWebguy 的建议)

于 2012-09-28T21:42:33.260 回答