php留言板程序(适合php初学者)(1/4)

 代码如下 复制代码

<!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=gbk" />
<title>所有留言</title>
<link rel="stylesheet" type="text/css教程" href="style.css" media="all" />
</head>

<body>
<a href="add.php">发表留言</a>
<?php
require('common.php');
$result = mysql教程_query("select * from gb_content order by id desc");//查询数据

while ($row = mysql_fetch_array($result, mysql_both)) {// 取一条数据
?>
<table width="700" border="0" cellspacing="0" cellpadding="0" class="tb">
  <tr>
    <td class="bg"><b>[<?php echo htmlentities($row['username'],ent_compat,'utf-8') ?>]</b> 发表于:<?php echo htmlentities($row['insert_time'],ent_compat,'utf-8') ?></td>
  </tr>
  <tr>
    <td><?php echo htmlentities($row['content'],ent_compat,'utf-8') ?></td>
  </tr>
  <tr>
    <td align="right"><a href="edit.php?id=<?php echo $row['id'] ?>">修改</a> <a href="delete.php?id=<?php echo $row['id'] ?>">删除</a></td>
  </tr>
</table>
<?php
}

mysql_free_result($result);

?>
</body>
</html>

 

首页 1 2 3 4 末页

时间: 2024-11-03 08:05:19

php留言板程序(适合php初学者)(1/4)的相关文章

php入门之留言板程序实现代码

留言板程序需要由php +数据库来实现本教程主要是讲到了关于php mysql的留言系统的实现过程,包括增加 修改 删除及编辑工作,是对php初学才学习的好资料. 留言板的sql文件,可直接导入到mysql 代码如下  create database form; use form; CREATE TABLE `message` ( `id` tinyint(1) NOT NULL auto_increment, `user` varchar(25) NOT NULL, `title` varch

用Google App Engine写一个留言板程序(一)

Google App Engine SDK可以看作是类似.NET Framework一样的平台(这个比喻不太恰当,但你可以先这样理解),这个环境运行在Google的服务器上,Google对它的安全.性能等作了多种限制和调节.另外Google App Engine是有选择性的支持Python,你不可能用到Python的全部特性 分享一下学习Google App Engine的学习心得,整个文章包括以下部分: ·Google App Engine前言介绍·开发环境配置·起步,写个Hello, Wor

一个简单的ASP+留言板程序

asp+|程序 这是我第一次写,还请大家多指教 只看了一天的CSharp就蠢蠢欲试,参考了NGWS的帮助文档,写了个留言板小程序. 本程序使用SQL SERVER7,库里只有4个字段: [GuestBook] book_id UserName Post_Time Content 因为对CSharp掌握还不好,写得有点乱,其实很多地方可以写得简单点.输出数据时可以使用不同的方法,我是用了服务器自带的控件Repeater来输出:还可以用getString的方法读取数据.值得研究的地方还有很多哦,呵呵

php与mysql留言板程序实现代码

关于PHP语法的那些就不说了,我就说一下连接mysql吧!  代码如下 复制代码 $conn =@mysql_connect("localhost","root","mydown") or die("数据库链接错误"); mysql_select_db("bbs", $conn); mysql_query("set names 'GBK'"); 第一句就是描述了连接数据库的语句,并且如果

php简易留言板程序代码

   代码如下 复制代码 <?php session_start(); $con=mysql_connect('localhost','root','root') or die('链接数据库失败!'); mysql_query('set names utf8'); mysql_select_db('GuestBook'); $pagesize = 10;//每一页显示多少留言记录 if(isset($_GET['page'])&&$_GET['page']!='') $page=$_

jsp 用户留言板程序

   代码如下 复制代码 <table class="k123" style="MARGIN-TOP: 15px; BORDER-COLLAPSE: collapse" bordercolor="#cccccc" cellspacing="0" cellpadding="4" width="360" align="center" bgcolor="#f

php入门教程-留言板程序

<?php if($_GET["action"]!=1) { ?> <form method="post" action="index.php?action=1"> <table border="1"> <tr> <td>MySQL主机名:</td> <td><input type="text" name="

php access 留言板程序

*/  代码如下 复制代码 error_reporting(0); $conn = new com("adodb.connection"); $conn->open("driver={microsoft access driver (*.mdb)}; dbq=" . realpath("db.mdb ")); $rs=new com("adodb.recordset"); $abc = $_get["abc&q

php无需数据库的网站留言板程序

<form name="form1" method="post" action="">   <label>   <input type="text" name="title">    标题<br>   <br>   </label>   <label>   <textarea name="content&qu