次のスクリプトを自分のマシンでローカルにテストしましたが、すべてが希望どおりに完全に機能します。ただし、1and1でサーバーにファイルをアップロードすると、ログインスクリプトで[送信]ボタンをクリックすると、ログイン画面に表示されたままになります。
よくわかりませんが、おそらく問題はセッションではなく、ヘッダー関数の使用にあります。
<?php
session_start();
require ("login.php");
include ("header.php");
include ("subnav.php");
if ((isset($_SESSION['user'])) && (isset($_SESSION['admin'])))
header('Location: admin/index.php' );
if ((isset($_SESSION['user'])) && (!isset($_SESSION['admin'])))
header('Location: customer/index.php' );
if ((isset($_GET['logout'])) == 1) {
session_destroy();
header('Location: index.php');
}
if (isset($_POST['submit']))
if($_POST['username'] == 'jay') {
$_SESSION['user'] = 'jay';
$_SESSION['admin'] = 1;
header('Location: admin/index.php' );
}
else if ($_POST['username'] == 'william'){
$_SESSION['user'] = 'william';
header('Location: customer/index.php' );
}
else {
header('Location: http://www.google.com' );
}
?>
<h2>System Log-In</h2>
<form action="" method="post">
<ul id="login">
<li>
Username: <br>
<input type="text" name="username"></li>
<li>
Password: <br>
<input type="password" name="password">
</li>
<li>
<input type="submit" value="Log-In" name ="submit" id="submit">
</li>
<li>
<br><a href=#>Register Here.</a>
</li>
<li>
If you are having problems with the log-in process, please send us an <a href="mailto:here@here.us">e-mail</a>.
</li>
</ul>
</form>
<?php
include ("footer.php");
?>