程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> PHP編程 >> 關於PHP編程 >> 無刷新登陸

無刷新登陸

編輯:關於PHP編程

無刷新登陸

<form action="login.php" method="post"  target="userlogin" name="loginform">
<div class="TxtUser" id="userlogindiv">
用戶名:<input name="accounts" id="accounts" type="text"   size="18" >
密碼: <input name="passwords" id="passwords"  type="password"  size="18" >
<input type="submit" name="Submit" value="登錄" />
</div>
</form>
<iframe name="userlogin" width="1" height="1" ></iframe>

login.php頁面:
<?
$accounts=$_POST['accounts'];
$passwords=$_POST['passwords'];
$showdata="我登錄啦!!";
if($accounts=="admin" && $passwords=="123456")
{
echo'<script language="JavaScript"> ';
echo'parent.document.getElementById("userlogindiv").innerHTML=\''.$showdata.'\';';
echo'</script>';
}
?>

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved