JS および PHP スクリプトは、Chrome または IE では正しく読み込まれません。FrontPage 2003 (SP-3) を使用して、ビデオ ゲーム開発をサポートする在宅ビジネス Web サイトを開発しています。
<?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");
}
}
?>