資料庫連線配置
dbconfig.php
<?php
define("host","localhost");
define("user","root");
define("pass","root");
define("dbname","message");
?>
conn.php
<?php
header('content-type:text/html;charset=utf8');
// $servername = "localhost";
// $username = "root";
// $password = "root";
// $dbname = "message";
require("dbconfig.php");
$conn = @mysql_connect(host,user,pass) or die("資料庫連線失敗!");
mysql_select_db(dbname,$conn);
?>
登入註冊
序號標題
作者時間
操作<?php
//定義分頁查詢的變數資訊
require("conn.php");
$pagesize = 2;//每一頁顯示1條記錄
//獲取當前資料表中的總頁碼數
$sql = "select * from msgs";
$results = mysql_query($sql);
$pagemaxnumber = ceil((float)(mysql_num_rows($results)) / $pagesize);
mysql_free_result($results);
if(isset($_get['page'])) else
if ($page < 1)
else if($page > $pagemaxnumber)
$lastpage = $page-1;
$nextpage = $page+1;
$pagebegin = ($page-1) * $pagesize;
//建立資料庫連線
//執行資料庫查詢
$sql = "select msgs.id,msgs.title,user.name,msgs.time from msgs,user where msgs.authorid=user.id limit ,";
$results = mysql_query($sql);
//處理查詢結果
while ($row = mysql_fetch_assoc($results))
刪除修改
str;
}//關閉資料庫連線
mysql_close();
?>
<?php
echo <<
<?php
//獲取url引數
$msgid = $_get['id'];
require("conn.php");
$sql = "select msgs.title,msgs.content,msgs.time,user.name from msgs,user where msgs.id = and msgs.authorid = user.id";
$results = mysql_query($sql);
$msg = mysql_fetch_assoc($results);
mysql_free_result($results);
mysql_close();
?>
<?php
if(isset($_post['submit'])) ',,'')";
//執行sql語句
if(mysql_query($sql)) else
// 執行資料庫刪除操作
require("conn.php");
$sql = "delete from msgs where id = $id";
$result = mysql_query($sql);
if($result == true) ";
$result = mysql_query($sql);
$msg = mysql_fetch_assoc($result);
mysql_free_result($result);
if(isset($_post['submit'])) ',content = '' where id = ";
if(mysql_query($sql) && mysql_affected_rows() == 1) {
echo <<
留言板骨架
顯示頁 form action lyb index.php index insert.html method post input name text type text value 表單提交 action位址要換成thinkphp裡的u方法,也就是去控制器裡找方法,這個方法負責接收post來的資料...
PHP留言板 一看就會的留言板
1.資料庫建立乙個message表用來儲存資料 2.連線資料庫 我是原生代pdo host 127.0.0.1 port 3306 埠 username root 使用者名稱 password root 密碼 dbname 表名 dsn mysql dbname dbname host host 拼...
PHP Mysql 實現留言板
這其中後台需要便於讀寫資料的乙個工具,我選擇mysql資料庫來幫助我完成這些事。我寫了主要是三個php檔案,分別是 conn.php 連線資料庫 1.準備建立資料庫表的結構,下面是我的表結構在phpmyadmin下的截圖 create table 表名稱 列名稱1 資料型別,列名稱2 資料型別,列名...