www.msheeksproductions.comのログインフォームでユーザーが送信ボタンを押したときに実行される次のログインスクリプトがあります。セキュリティ上の理由から、DBログイン情報を削除しました。
<?php
error_reporting(E_ALL);
$user = '***************';
$pass = '***************';
$host = '***************';
$data = '***************';
$userN=$_POST['userN'];
$passW=$_POST['passW'];
mysql_connect($host, $user, $pass)or die("Could not connect");
mysql_select_db($data)or die("Database Not Found");
$query="SELECT userID FROM sec_login WHERE Username='$userN' AND Password='passW'";
$result=mysql_query($query) or die(mysql_error());
$user=mysql_num_rows($result);
if($user==1) {
session_register("userN");
header("location: ../index.php");
}
else {
echo("You have entered invalid login information.");
}
}
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
</head>
<body>
</body>
</html>
私の問題は、security.phpページにアクセスしても、何も起こらないということです。PHPスクリプトがまったく実行されていないようです。どこかに構文エラーがあるのか、それともホスティングアカウントの構成の問題なのかわかりません。サーバーはPHP5.2を使用しています。これらの種類のものについてBluehostに既知の問題があるかどうか誰かが知っていますか?コーディングエラーがある場合は、明らかに私も知りたいです。私はこれに慣れていないので、すべてを正しく行っていない可能性があります。
また、index.phpファイルで変数を再度呼び出そうとしていますが、データが返されないようです。
<?php $usr=$_SESSION['username'];
echo "User Name Is: $usr"; ?>
前もって感謝します!