php 简单留言板教程二

好了现在我们来看login.php文件的程序代码吗.

<?php
 session_start();
 include("global.php");
 
 if(isset($_POST['username']) && isset($_POST['pwd']))
 {
  $result = mysql_query("SELECT * FROM xx_admin");
  if($info = mysql_fetch_array($result))
  {
   if($_POST['username'] == $info['username'] && $info['password'] == md5($_POST['pwd']))
   {
    $_SESSION[user] = $info['username'];
    echo("login OK!");
    die("<script>window.location.href='index.php';</script>");
   }
   else echo("<script>window.alert('登陆失败!');window.location.href='".$_SERVER['PHP_SELF']."';</script>");
  }
 }
?>

 

<!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=utf-8" />
<title>管理员登陆</title>
<style type="text/css">
<!--
body {
 background: #EAF4FF;
 font-size: 12px;
}
-->
</style>
</head>

<body>
<table width="240" border="0" cellspacing="0" cellpadding="0" align="center">
  <form action="<?php echo $_SERVER['PHP_SELF']; ?>" method="post" name="login" id="login">
    <tr>
      <td height="25"></td>
      <td height="25"><strong>管理登录</strong></td>
    </tr>
    <tr>
      <td width="59" height="25" align="right">用户名:&nbsp;</td>
      <td width="181" height="25"><label>
        <input name="username" type="text" class="loginput" id="username" value="" />
      </label></td>
    </tr>
    <tr>
      <td height="25" align="right">密 码:&nbsp;</td>
      <td height="25"><label>
        <input name="pwd" type="password" class="loginput" id="pwd" />
      </label></td>
    </tr>
    <tr>
      <td height="25">&nbsp;</td>
      <td height="25"><label>
        <input name="Submit" type="submit" class="botton" value="登 录" />
      </label></td>
    </tr>
  </form>
</table>
</body>
</html>
登陆后就可以看到留言的了就会用mreplay.php进行回答网友的问题.代码如下.

<?php
 session_start();
 include("global.php");
 if(!$_SESSION[user])
  die("<script>window.alert('请先登陆!');window.location.href='login.php';</script>");
 
 if(isset($_GET['act']) && $_GET['act']=='reply')
 {
  
  $content = $_POST['reply'];
  $content = str_replace("","&nbsp;",$content);
  $content = str_replace(" ","&nbsp;",$content);
  $content = str_replace("\n","<br />",$content);
     $sql = "UPDATE xx_guestbook SET reply = '{$content}',replytime = '".date('Y-m-d H:i:s')."' WHERE mid = ".intval($_GET['mid']);
     //echo $sql;
     $row=mysql_query($sql);
  if($row)
  {
   echo("reply OK!");
   die("<script>window.location.href='lyb.php';</script>");
  }
  else echo("false");
     
 }else
 
 if(isset($_GET['act']) && $_GET['act'] == 'edit')
 {
  if(isset($_GET['mid']))
  {
   $mid = intval($_GET['mid']);
   $row=mysql_query("SELECT * FROM xx_guestbook WHERE mid = {$mid}");
   if($row)
   {
    $rs=mysql_fetch_array($row);
    //print_r($rs); DEBUG
    //echo "<meta http-equiv=\"refresh\" content=\"1; url=index2.php\">";
    $reply = $rs['reply'];
    $reply = str_replace("<br />","\n",$reply);
    //$reply = str_replace("&nbsp;","",$reply);
    //$reply = str_replace("&nbsp;","",$content);
    //$reply = str_replace("<br />","",$reply);
   }
   else echo("false");
  }
 
 
?> 

<!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=utf-8" />
<title>编辑回复留言</title>
</head>

<body>
<table width="500" border="0" cellspacing="0" cellpadding="0" align="center">
  <form action="<?php $_SERVER['PHP_SELF']; ?>?act=reply&amp;mid=<?php echo("{$rs['mid']}");?>" method="post" name="message" id="message">
    <tr>
      <td height="25" align="center"><strong>回复留言<?php echo $_GET['mid']; ?></strong></td>
    </tr>
    <tr>
      <td height="25" align="center"><label>
        <textarea name="reply" cols="70" rows="15" class="input" id="reply"><?php echo $reply; ?></textarea>
      </label></td>
    </tr>
    <tr>
      <td height="25" align="center"><label>
        <input name="Submit" type="submit" class="botton" value="回复留言" />
      </label></td>
    </tr>
  </form>
</table>
</body>
</html>
<?php
 }
?>

时间: 2024-09-20 13:28:24

php 简单留言板教程二的相关文章

php 简单留言板教程三

好了,其它的都快完了我们就来看看index.php文件显示留方的页面吧. <?php  @session_start();  include("global.php");    if(isset($_GET['act']) && $_GET['act'] == 'del')  {   if(isset($_GET['mid']))   {    $mid = intval($_GET['mid']);    if(mysql_query("DELETE

flash留言板制作二

flash留言板制作二 本文章主要讲flash留言板制作以及提供flash留言板源文件和asp+flash留言板源码最终目的就是让你用flash制作留言板 ,现在我们来看看asp文件是怎么处理由flash发送来的文件吧. <%@LANGUAGE="VBSCRIPT" CODEPAGE="65001"%> <%Response.Charset="utf-8"%> <%Session.CodePage = "6

js使用DOM操作实现简单留言板的方法_javascript技巧

本文实例讲述了js使用DOM操作实现简单留言板的方法.分享给大家供大家参考.具体分析如下: 如图所示简易留言板,也就是自娱自乐版,说白了就是练习DOM操作. 要点一:document.createElement("标签名") 新建元素 要点二:父元素.appendChild("元素")  把新建的元素插入到页面的标签中(在标签的最后一个显示),这样才会在浏览器中显示出来 要点三:父元素.insertBefore("元素","要插入哪个元

Go语言实现简单留言板的方法_Golang

本文实例讲述了Go语言实现简单留言板的方法.分享给大家供大家参考.具体实现方法如下: 复制代码 代码如下: package main import (     // "fmt"     "io"     "log"     "net/http"     "text/template"     "time"     "database/sql"     "gi

flash+php+mysql打造简单留言本教程第1/3页_php技巧

(主要参考了火山的帖子:★FLASH与ASP通信入门教程--做真正属于自己的留言本!).网上没有比较好的php留言本相关教程,我下载的N多源文件都看得云里雾里,而且好多都将代码写在MC上.又或许可能有好的教程我没搜到,但无论如何,我现在要在这里班门弄斧一番了. flash+php+mysql简单留言本教程 目的: 用flash+php+mysql制作一个简单的留言本. 配置环境: 最开始肯定是先配置相应的环境了.我下载的是配置环境套件包,傻瓜式的方法,简易安装,比较适合我.下载地址:http:/

php简单留言板代码

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=&qu

js使用DOM操作实现简单留言板的方法

 如图所示简易留言板,也就是自娱自乐版,说白了就是练习DOM操作. 要点一:document.createElement("标签名") 新建元素 要点二:父元素.appendChild("元素") 把新建的元素插入到页面的标签中(在标签的最后一个显示),这样才会在浏览器中显示出来 要点三:父元素.insertBefore("元素","要插入哪个元素的前面") 把新建的元素插入到页面中指定的标签前面,这样后面输入的内容才会显示到

jsp留言板源代码二: 给jsp初学者

js|初学|源代码 guestbook.jsp =========================== <html><head> <META content="text/html; charset=gb2312 " http-equiv=Content-Type> <title>张家界电话黄页(网上114)</title></head> <style type="text/css">

jsp留言板源代码二: 给jsp初学者._JSP编程

作 者: precom (皮蛋) 2000.12.10 guestbook.jsp =========================== <html><head> <META content="text/html; charset=gb2312 " http-equiv=Content-Type> <title>张家界电话黄页(网上114)</title></head> <style type="