簡單的留言板,遇到困難了

2021-05-23 19:49:16 字數 727 閱讀 6706

[b]資料庫:[/b]

create table message(

id tinyint(1) not null auto_increment,

user varchar(25) not null,

title varchar(50) not null,

content tinytext not null,

lastdate date not null,

primary key (id)

)engine=innodb default charset=gbk auto_increment=1;

[b]conn.php[/b]

<?php

$conn = mysql_connect("localhost","root","") or die("鏈結失敗!");

mysql_select_db("bbs",$conn);

mysql_query("set names 'gbk'");

?>

[b]add.php[/b]

<?php

include ("conn.php");

if($_post[submit])*/}

?>

[b]list.php[/b]

<?php

include("conn.php");

?>

內容<?=$row[content]?>:

<?php }?>

PHP留言板 一看就會的留言板

1.資料庫建立乙個message表用來儲存資料 2.連線資料庫 我是原生代pdo host 127.0.0.1 port 3306 埠 username root 使用者名稱 password root 密碼 dbname 表名 dsn mysql dbname dbname host host 拼...

簡單PHP留言板之五 留言列表

檔名 list.php 說明 mysql fetch array mysql fetch array data,array type 函式從結果集中取得一行作為關聯陣列,或數字陣列,或二者兼有 返回根據從結果集取得的行生成的陣列,如果沒有更多行則返回 false。data 可選。規定規定要使用的資料...

NO 1簡單留言板 02

昨天留的問題 想到還有乙個重要的問題,就是怎麼樣把時間寫進去的問題,明天可不要忘了啊.protected void formview1 iteminserting object sender,formviewinserteventargs e itemiinserting 對資料來源執行insert...