程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> PHP編程 >> 關於PHP編程 >> 靜態頁面實時調用用戶登陸與退出登陸程序(js調用php代碼)

靜態頁面實時調用用戶登陸與退出登陸程序(js調用php代碼)

編輯:關於PHP編程

在程序開發中,經常會把頁面做成html的靜態形式,這樣可以減輕服務器負載,但是也存在一個問題就是當注冊用戶登陸時,要在html頁面顯示登陸成功或需要登陸的提示,這樣我們就必須想其它辦法來實現了,下面我們就是利用js+php來實例的,當然還有ajax也可以實現哦

靜態頁面實時調用用戶登陸與退出登陸程序(網頁特效調用php教程代碼)

<!doctype html public "-//w3c//dtd xhtml 1.0 transitional//en" "http://www.w3.org/tr/xhtml1/dtd/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="content-type" content="text/html; charset=gb2312" />
<title>靜態頁面實時調用用戶登陸與退出登陸程序(網頁特效調用php代碼)</title>
</head>

<body>
<script language="網頁特效" src="/loginajax.php?fid={fid}"></script>
</body>
</html>


loginajax.php文件代碼
<!--{因為loginajax.php是由js形式調用輸出,所以在這個文件裡面的代碼由於按js輸出形式才能正確被顯示哦。}-->

<?php
 $id = isset( $_get['fid'] )?$_get['fid']:0; 
 if( !isset($_cookie['vvg']) ){
?>
document.write('用戶名:<input type="text" class="pl_sty1" name="username" id="username" />');
document.write('<input name="action" type="hidden" value="login" />');
<?
 }
 else
 {
  echo 'document.write('['.$_cookie['realname'],']發言 <a href=/login/login.php?action=logout>退出</a>');';
 }
?>

本文章原創於http://www.bkjia.com/phper/php.html轉載注明來源,謝謝合作。


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