当前位置:首页 > 综合实例 > 列表

php access 留言板程序

发布:smiling 来源: PHP粉丝网  添加日期:2014-09-11 20:45:39 浏览: 评论:0 

php access 留言板程序,这里不是php与mysql的留言板程序,而是一款简单实用的php access 留言板程序,利用了adodb来连接access数据库,代码如下:

  1. error_reporting(0); 
  2. $conn = new com("adodb.connection");  
  3. $conn->open("driver={microsoft access driver (*.mdb)}; dbq=" . realpath("db.mdb ")); 
  4. $rs=new com("adodb.recordset"); 
  5. $abc = $_get["abc"]; $webn = $_post["webn"]; $name = $_post["name"]; $pws = $_post["pws"]; $newpws = $_post["newpws"]; 
  6. $rs->open("select * from [web]",$conn,1,1); 
  7. $adminname = $rs->fields(1)->value; 
  8. $adminpws = $rs->fields(2)->value; 
  9. $ll = $rs->fields(3)->value; 
  10. $webname = $rs->fields(4)->value; 
  11. $rs->close(); 
  12. $admincookie = $adminname
  13. $conn->execute("update [web] set [ll] = '$ll'+1"); //$rs->close(); 
  14. ?> 
  15. <!doctype html public "-//w3c//dtd xhtml 1.0 transitional//en" "http://www.w3.org/tr/xhtml1/dtd/xhtml1-transitional.dtd"
  16. <html xmlns="http://www.111cn.net/1999/xhtml"
  17. <head> 
  18. <meta http-equiv="content-type" content="text/html; charset=gb2312" /> 
  19. <title><? echo $webname ?></title> 
  20. <style type="text/css"
  21. <!-- 
  22. body {font-size:14px; line-height:25px; margin:10px auto; padding:10px; width:680px; border:solid #8aa 1px;} 
  23. a {color:#008; text-decoration:none;} 
  24. a:hover {color:#f00; text-decoration:underline;} 
  25. hr {color:#8aa; height:1px;} 
  26. --> 
  27. </style> 
  28. </head> 
  29. <body> 
  30. <? 
  31. if ($abc=="admin"){ 
  32.  if ($name==$adminname && $pws==$adminpws){ 
  33.  setcookie("admin"$admincookie, time()+3600); header("location:./"); 
  34.  }else{echo "<script>alert('用户名或密码错误!');history.back();</script>";} 
  35. if ($abc=="exit"){ 
  36. setcookie("admin""", time()-3600); header("location:./"); 
  37. if ($abc=="editadmin"){ 
  38.  if (!$webname || !$name || !$pws){ 
  39.  echo "<script>alert('留言本、用户名、原密码不能为空!');history.back();</script>"
  40.  } 
  41.  if ($pws!=$adminpws){ 
  42.  echo "<script>alert('愿密码错误!');history.back();</script>"
  43.  } 
  44.  if($newpws!=""){ 
  45.  $conn->execute("update [web] set [webname] = '$webname' , [name] = '$name' , [pws] = '$newpws'"); 
  46.  $conn->close(); //$conn=null;  
  47.  echo "<script>alert('修改成功,请重新登录!');location='?abc=exit';</script>"
  48.  }else
  49.  $conn->execute("update [web] set [webname] = '$webn' , [name] = '$name'"); 
  50.  $conn->close(); //$conn=null;  
  51.  echo "<script>alert('修改成功!');location='./';</script>"
  52.  } 
  53. ?> 
  54. <b>【 <a href="./"><? echo $webname ?></a> 】</b> 
  55. <a href="">管理</a> <? if (isset($_cookie["admin"])){ ?> <a href="">修改资料</a> <a href="">安全退出</a><? ;} ?> 
  56. <? if ($abc=="user" && !isset($_cookie["admin"])){ ?> 
  57.  <form method="post" action=""
  58.   用户名:<input name="name" type="text" value=""/> 
  59.   密码:<input name="pws" type="password" value=""/> 
  60.   <input name="add" type="submit" value="确定" /> 
  61.  </form> 
  62. <? ;} ?> 
  63. <? if ($abc=="edituser"){ ?> 
  64.  <form method="post" action=""
  65.   留言本:<input name="webn" type="text" value="<? echo $webname; ?>" size="80"/> 
  66.   <br /> 
  67.   用户名:<input name="name" type="text" value="<? echo $admincookie; ?>"/> 
  68.   原密码:<input name="pws" type="password" value=""/> 
  69.   新密码:<input name="newpws" type="password" value=""/> 
  70.   <input name="add" type="submit" value="确定" /> 
  71.  </form> 
  72. <? ;} ?> 
  73. <hr/> 
  74. <? 
  75. $id=$_get['id']; 
  76. $sj=date('y-m-d'); 
  77. if($abc=="add"){ 
  78.  $nr=$_post['nr']; 
  79.  $ip=getenv("remote_addr"); 
  80.  if (!$nr){ 
  81.  echo "<script>alert('留言不能为空!');history.back();</script>"
  82.  }else
  83.  $conn->execute("insert into [txt] (nr,sj) values ('$nr','$sj')"); 
  84.  } 
  85.  echo "<script>alert('操作成功!');location='./';</script>"
  86.  $conn->close(); $conn=null; 
  87.  
  88. if($abc=="del"){ 
  89.  $conn->execute("delete from [txt] where [id]=".$id); 
  90.  $conn->close(); $conn=null; header("location:./"); 
  91. if($abc=="edit"){ 
  92.  $nr=$_post['nr']; 
  93.  $hf=$_post['hf']; 
  94.  $conn->execute("update [txt] set [nr] = '$nr' , [hf] = '$hf' where [id]=".$id); 
  95.  $conn->close(); $conn=null; header("location:./"); 
  96.  
  97. $zd=$_get['zd'];  
  98. if($zd!=""){ 
  99.  if($zd=="0")$zd=1; else $zd=0; 
  100.  $conn->execute("update [txt] set [zd] = '$zd' where [id]=".$id); 
  101.  $conn->close(); $conn=null; header("location:./"); 
  102. ?> 
  103. <center> 
  104. <form method="post" action=""
  105. <textarea name="nr" cols="88" rows="8" style="line-height:25px;"></textarea><br /><br /> 
  106. <input name="add" type="submit" value="发表留言" /> 
  107. </form> 
  108. </center> 
  109. <hr/> 
  110.  
  111. <? 
  112. //分页 
  113. $rs->open("select * from [txt] order by [zd] desc, [sj] desc",$conn,1,3); 
  114. $rs->pagesize=5; 
  115. $page=trim($_get['page']); 
  116. if($page=="" || is_numeric(intval($page))<=0){$page=1;}else if(intval($page)>$rs->pagecount){$page=$rs->pagecount;} 
  117. $page=intval($page);  
  118.  if(!$rs->eof||$rs->bof){ 
  119.   $rs->absolutepage=$page$mypagesize=$rs->pagesize; $i=$rs->recordcount()-($page-1)*$rs->pagesize;   
  120.   while(!$rs->eof && $mypagesize>0 && $i>=$rs->recordcount()-1-$rs->pagesize*$page){  
  121.    $id = $rs->fields(0)->value; 
  122.    $nr = $rs->fields(1)->value; 
  123.    $hf = $rs->fields(2)->value; 
  124.    $sj = $rs->fields(3)->value; 
  125.    $zd = $rs->fields(4)->value; 
  126. ?> 
  127. <div style="border:#eee solid 1px; background:#f8f8f8; padding:0 10px;"
  128. <div style="float:left;"
  129. <? if ($zd!=0) echo "【 <font color='#008800'>置顶</font> 】"else echo "id.".$i; ?> 
  130. <? if ($_cookie["admin"]==$admincookie){ ?>  
  131. 操作:<a href=''><? if ($zd==0) echo "置顶"else echo "取消置顶"; ?></a> | 
  132. <a href=''>修改/回复</a> | 
  133. <a href=''>删除</a> 
  134. <? ;} ?> 
  135. </div> 
  136. <div style="float:right;"
  137. date:<? echo $sj; ?> 
  138. </div> 
  139. <div style="clear:both"></div> 
  140. </div> 
  141. <hr/> 
  142. <? if ($abc=="hf" && $id==$_get['id']){ ?> 
  143.  <form method="post" action="" id="<? echo $id ?>"
  144.  留言:<textarea name="nr" cols="80" rows="8" style="line-height:25px;"><? echo $nr; ?></textarea><br /> 
  145.  回复:<textarea name="hf" cols="80" rows="8" style="line-height:25px;"><? echo $hf; ?></textarea><br /> 
  146.  操作:<input name="add" type="submit" value="回复/修改" /> 
  147.  </form> 
  148. <? ;} ?>  
  149. <div style="margin:20px;"
  150. <? 
  151.  $nr = str_replace(" "," ".'<br/>',$nr);  
  152.  $nr = str_replace(" ",'&nbsp;',$nr);  
  153.  echo $nr."<br />"
  154. ?>  
  155. <? 
  156.  if ($hf!=""){ 
  157.   echo "<font color='#aa0000'>回复:"
  158.   $hf = str_replace(" "," ".'<br/>',$hf);  
  159.   $hf = str_replace("  ",'&nbsp;&nbsp;',$hf);  
  160.   echo $hf."</font>"
  161.  } 
  162. ?> 
  163. </div> 
  164. <hr/> 
  165. <? $rs->movenext; $mypagesize--; $i--; } } //分页循环 ?> 
  166. <center> 
  167. 留言数(<? echo $rs->recordcount(); ?>) 
  168. <a href="">首页</a> 
  169. <a href="">上页</a> 
  170. 第<? echo $page;?>/<? echo $rs->pagecount;?>页 
  171. <a href="">下页</a>//开源代码phpfensi.com 
  172. <a href="">尾页</a>&nbsp; 
  173. 访问量(<? echo $ll ?>) 
  174. </center> 
  175. <? $rs->close(); $rs=null; $conn->close(); $conn=null; ?> 
  176. </body> 
  177. </html> 

数据库结构:

id name pws ll webname

1 abc abc 4 abc 留言本 php+acc

Tags: php access 留言板程序

分享到: