送信時に user と pass の 2 つの値を持つフォームがあります。
$_POST['submit'] = the name of the submit button is "submit"
ユーザーが送信すると、検証するためにphpに次のスクリプトがあります。
$logins = array(
'user1' => 'pass1',
'user2' => 'pass2',
'user3' => 'pass3'
);
foreach($_POST as $key => $value) {
$_POST[$key] = stripslashes($_POST[$key]);
$_POST[$key] = htmlspecialchars(strip_tags($_POST[$key]));
}
/******************************************************************************/
if (isset($_POST['submit'])){
$user = isset($_POST['user']) ? strtolower($_POST['user']) : '';
$pass = isset($_POST['pass']) ? $_POST['pass'] : '';
$report = $_POST['typereport'];
if ($logins[$user] != $pass) {
showForm("Wrong Username/Password");
exit();
}
else {
if ($report == "Clinical") {
$file = $filename;
$contents = file($file);
$string = implode("<br>", $contents);
echo "<head><title>ScoreViewer: Clinical</title></head>";
echo "Logged in as: " . strtoupper($user) . "<br>";
echo "<a href='log2.php'>Sign Out</a>";
echo "<br><br>";
echo "<pre>" . $string . "</pre>";
echo "<br><br>";
}
elseif ($report == "Non-Clinical") {
$file = $filename2;
$contents = file($file);
$string = implode("<br>", $contents);
echo "<head><title>ScoreViewer: Non-Clinical</title></head>";
echo "Logged in as: " . strtoupper($user) . "<br>";
echo "<a href='log2.php'>Sign Out</a>";
echo "<br><br>";
echo "<pre>" . $string . "</pre>";
echo "<br><br>";
}
}
} else {
showForm();
exit();
}
ここで何が起こるかというと、スクリプトは入力されたユーザー名とパスワードを比較して一致を見つけます。一致するレポートが見つかった場合、それがどのタイプのレポートであるかに基づいて表示されます。しかし、何らかの理由で送信ボタンが押されると、IF ステートメントの臨床部分に直接移動します。
配列なしで単一のユーザー名/パスワードを使用するだけで問題なく動作します。次のように:
$username = "user";
$password = "pass";
foreach($_POST as $key => $value) {
$_POST[$key] = stripslashes($_POST[$key]);
$_POST[$key] = htmlspecialchars(strip_tags($_POST[$key]));
}
/******************************************************************************/
if (isset($_POST['submit'])){
$user = isset($_POST['user']) ? strtolower($_POST['user']) : '';
$pass = isset($_POST['pass']) ? $_POST['pass'] : '';
$report = $_POST['typereport'];
if ($user != $username && $pass != $password) { #$logins[$user] != $pass) {
showForm("Wrong Username/Password");
exit();
}
else {
// decide what to do here if the user and pass is correct, deleted to save space
}
} else {
showForm();
exit();
}
完了しようとしているものを達成するにはどうすればよいですか?
完全な HTML コード: Pastbin