如下所示:
復制代碼 代碼如下:
<form action="#" method=post>
用戶名:<input type=text name=user><br>
密 碼: <input type=password name=pwd><br>
<input type=submit name=sbumit value=提交>
<input type=reset name=reset value=重置>
<?
session_start();
$_SESSION["user"]=$_POST[user];
$_SESSION["password"]=$_POST[pwd];
if($_SESSION[user]==""){
echo "<mce:script type="text/javascript"><!--
alert('用戶名不能為空!');
// --></mce:script>";
}
if($_SESSION["user"]=="admin"){
echo "當前登錄:系統管理員<br><a href='users_manage.php'>用戶管理</a>";
}else{
echo"當前登錄:".$_SESSION[user]."<br><a href='album.php'>我的相冊</a>";
}
?>