亚洲国产日韩欧美一区二区三区,精品亚洲国产成人av在线,国产99视频精品免视看7,99国产精品久久久久久久成人热,欧美日韩亚洲国产综合乱

PHP開發(fā)簡單圖書借閱系統(tǒng)之創(chuàng)建公共網(wǎng)頁

在我們這個借閱系統(tǒng)中頭部的HTML是固定不變的

#不會隨著頁面的跳躍而改變。

為了不重複的編寫頭部程式碼,我們需要製作一個head.php檔案

寫入頭部HTML程式碼,以方便在各個檔案中呼叫。

<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<table width="" border="0" align="center" cellpadding="0" cellspacing="1" bgcolor="#CCCCCC" >
  <tr>
    <td bgcolor="#FFFFFF"><img src="https://img.php.cn/upload/course/000/000/008/58215f071f35b180.jpg" width="440" height="200" /></td>
  </tr>
  <tr>
    <td bgcolor="#FFFFFF"><table width="440" height="50" border="0" align="center" cellpadding="0" cellspacing="0">
        <tr>
          <td align="center" background="https://img.php.cn/upload/course/000/000/008/58215f29827c0755.jpg">
          <a href="index.php" title="首頁">首頁</a></td>
          <td align="center" background="https://img.php.cn/upload/course/000/000/008/58215f29827c0755.jpg">
          <a href="index.php?proid=<?php echo urlencode('網(wǎng)頁美工');?>" title="網(wǎng)頁美工">網(wǎng)頁美工</a></td>
          <td align="center" background="https://img.php.cn/upload/course/000/000/008/58215f29827c0755.jpg">
          <a href="index.php?proid=<?php echo urlencode('大數(shù)據(jù)');?>" title="大數(shù)據(jù)">大數(shù)據(jù)</a></td>
          <td align="center" background="https://img.php.cn/upload/course/000/000/008/58215f29827c0755.jpg">
          <a href="index.php?proid=<?php echo urlencode('asp編程');?>" title="asp編程">asp編程</a></td>
          <td align="center" background="https://img.php.cn/upload/course/000/000/008/58215f29827c0755.jpg">
          <a href="index.php?proid=<?php echo urlencode('php編程');?>" title="php編程">php編程</a></td>
          <td align="center" background="https://img.php.cn/upload/course/000/000/008/58215f29827c0755.jpg">
          <a href="index.php?proid=<?php echo urlencode('軟件開發(fā)');?>" title="軟件開發(fā)">軟件開發(fā)</a></td>
          <td align="center" background="https://img.php.cn/upload/course/000/000/008/58215f29827c0755.jpg">
          <a href="landing.php"  title="用戶登陸">用戶登陸</a>&nbsp;&nbsp;
          </td>
        </tr>
      </table></td>
  </tr>
</table>

這裡把使用者的登出登入功能也加入其中:

<td align="center" background = "https://img.php.cn/upload/course/000/000/008/58215f29827c0755.jpg">
<a href="landing.php" title="用戶登陸">用戶登陸</a>&nbsp;&nbsp;
  <?php
  if ($_SESSION['id']){
    echo "<a href='landing.php?tj=out' title='退出'>退出</a>";
  }
  ?>
</td>

在登入功能頁面進行判斷

<?php
//初始化session
if(isset($_GET['tj']) == 'out'){
  session_destroy();
  echo "<script language=javascript>alert('退出成功!');window.location='landing.php'</script>";
}
?>


#
繼續(xù)學(xué)習(xí)
||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <table width="" border="0" align="center" cellpadding="0" cellspacing="1" bgcolor="#CCCCCC" > <tr> <td bgcolor="#FFFFFF"><img src="http://img.php.cn/upload/course/000/000/008/58215f071f35b180.jpg" width="440" height="200" /></td> </tr> <tr> <td bgcolor="#FFFFFF"><table width="440" height="50" border="0" align="center" cellpadding="0" cellspacing="0"> <tr> <td align="center" background="http://img.php.cn/upload/course/000/000/008/58215f29827c0755.jpg"> <a href="index.php" title="首頁">首頁</a></td> <td align="center" background="http://img.php.cn/upload/course/000/000/008/58215f29827c0755.jpg"> <a href="index.php?proid=<?php echo urlencode('網(wǎng)頁美工');?>" title="網(wǎng)頁美工">網(wǎng)頁美工</a></td> <td align="center" background="http://img.php.cn/upload/course/000/000/008/58215f29827c0755.jpg"> <a href="index.php?proid=<?php echo urlencode('大數(shù)據(jù)');?>" title="大數(shù)據(jù)">大數(shù)據(jù)</a></td> <td align="center" background="http://img.php.cn/upload/course/000/000/008/58215f29827c0755.jpg"> <a href="index.php?proid=<?php echo urlencode('asp編程');?>" title="asp編程">asp編程</a></td> <td align="center" background="http://img.php.cn/upload/course/000/000/008/58215f29827c0755.jpg"> <a href="index.php?proid=<?php echo urlencode('php編程');?>" title="php編程">php編程</a></td> <td align="center" background="http://img.php.cn/upload/course/000/000/008/58215f29827c0755.jpg"> <a href="index.php?proid=<?php echo urlencode('軟件開發(fā)');?>" title="軟件開發(fā)">軟件開發(fā)</a></td> <td align="center" background="http://img.php.cn/upload/course/000/000/008/58215f29827c0755.jpg"> <a href="landing.php" title="用戶登陸">用戶登陸</a>   </td> </tr> </table></td> </tr> </table>