1

ユーザー名とパスワードに正しいデータを入力しても、ログイン ページから次の Web ページにリダイレクトされません。

config.incを確認してconfig.phpにしたところ

Webページには何も表示されません。

助言がありますか

株式会社コンフィグ

 $con=mysqli_connect("localhost","root@localhost","","test");
// Check connection
if (mysqli_connect_errno())
  {
  echo "Failed to connect to MySQL: " . mysqli_connect_error();
  }

ログインプロセスページ

<?php

// Inialize session
session_start();

// Include database connection settings
include('config.inc');

// Retrieve username and password from database according to user's input
$login = mysql_query("SELECT * FROM users WHERE (username = '" . mysql_real_escape_string($_POST['username']) . "') and (password = '" . mysql_real_escape_string(md5($_POST['password'])) . "')");

// Check username and password match
if (mysql_num_rows($login) == 1) {
// Set username session variable
$_SESSION['username'] = $_POST['username'];
// Jump to secured page
header('Location: securedpage.php');
}
else {
// Jump to login page
header('Location: index.php');
}

?>

securepage.php

<?php

// Inialize session
session_start();

// Check, if username session is NOT set then this page will jump to login page
if (!isset($_SESSION['username'])) {
header('Location: index.php');
}

?>
<html>

<head>
<title>Secured Page</title>
</head>

<body>

<p>This is secured page with session: <b><?php echo $_SESSION['username']; ?></b>
<br>You can put your restricted information here.</p>
<p><a href="logout.php">Logout</a></p>

</body>

</html>
4

3 に答える 3

0

あなたのフォームは同じログインページにありますか、それとも別のページにありますか? 同じログイン ページにある場合は、 を使用してif ($_POST['submit'])からコードを実行してみてください。別のページにある場合は、フォーム アクションにログイン ページのパスがあることを確認してください。

于 2013-05-21T01:59:58.287 に答える
0

ヘッダー関数の前に何も出力されていないことを確認してください。これには、PHP ファイルおよび含まれている PHP ファイルの空白も含まれます。

于 2013-05-21T01:28:12.340 に答える