一個(gè)html表單,包含留言信息,提交給一個(gè)php文件,然后php把數(shù)據(jù)存入相應(yīng)數(shù)據(jù)庫。
10年積累的網(wǎng)站設(shè)計(jì)、網(wǎng)站制作經(jīng)驗(yàn),可以快速應(yīng)對(duì)客戶對(duì)網(wǎng)站的新想法和需求。提供各種問題對(duì)應(yīng)的解決方案。讓選擇我們的客戶得到更好、更有力的網(wǎng)絡(luò)服務(wù)。我雖然不認(rèn)識(shí)你,你也不認(rèn)識(shí)我。但先網(wǎng)站設(shè)計(jì)制作后付款的網(wǎng)站建設(shè)流程,更有元氏免費(fèi)網(wǎng)站建設(shè)讓你可以放心的選擇與我們合作。
查看留言則是php從數(shù)據(jù)庫讀出相應(yīng)數(shù)據(jù),然后顯示給用戶。
連接數(shù)據(jù)庫和分頁都可以通過調(diào)用外部類來實(shí)現(xiàn),如果把類寫在頁面中會(huì)顯得很亂,容易出錯(cuò)。
$conn =mysqli_connect ([ string $host [, string $username [, string $passwd [, string $dbname [, int $port [, string $socket ]]]]]] );
一個(gè)參數(shù)是 主機(jī)名 第二個(gè)是 用戶名 第三個(gè) 是密碼 第四個(gè)是 數(shù)據(jù)庫名; 后面的不用填了;
然后
$reshult=$conn-query('查詢語句');
創(chuàng)建php文件
代碼如下
?php
mysql_connect('localhost','mysql賬號(hào)','mysql密碼') or die('數(shù)據(jù)庫連接失敗');
$sql="CREATE DATABASE `mydb`";
$result = mysql_query($sql);
if($result==true){
echo '數(shù)據(jù)庫創(chuàng)建成功';
}
mysql_select_db('mydb');
$sql="CREATE TABLE myTable (`id` INT(10) AUTO_INCREAMENT PRIMARY KEY,
`something` VARCHAR(10) NOT NULL
)";
$result = mysql_query($sql);
if($result==true){
echo '表創(chuàng)建成功';
}
//至此,數(shù)據(jù)庫,表創(chuàng)建成功,你就可以寫自己的sql語句經(jīng)行數(shù)據(jù)庫操作了
?
登錄頁:login.php
?php
include("conn.php");
$username=$_POST['name'];
$password=$_POST['password'];
$yanzheng=$_POST['yanzheng'];
if(isset($_POST['submit']))
{
$sql=("select username,password from member where username='$username' and password='$password'") or die("sql語句執(zhí)行失敗");
//print_r($sql);
$ar=mysql_query($sql);
if($ar)
{
if($row=mysql_fetch_array($ar))
{
session_start();
if($_POST["yanzheng"])
{
if($yanzheng!=$_session[pic]||$yanzheng=="")
{
echo "驗(yàn)證碼輸入有誤";
exit;
}
if($yanzheng==$_session[pic])
{
header("location:index.php");
}
}
}
else
{
echo "用戶名或密碼錯(cuò)誤";
}
}
}
?
form action="login.php" method="post"
table border=1 align=center width=500 height=300 bgColor=#DFFFDF bordercolor=#fffbec
tr
td colspan=2 align=center用戶登錄/td
/tr
tr
td用戶姓名:/td
tdinput type="text" name="name" id="name"http://td
/tr
tr
td用戶密碼:/td
tdinput type="password" name="password" id="password"http://td
/tr
tr
td驗(yàn)證碼:/td
tdinput type="text" name="yanzheng" id="yanzheng"/
img src="yanzheng1.php" width="50" height="30"/img
/td
/tr
tr
td colspan=3 align=center
input type="submit" name="submit" value="登錄"/
input type="reset" name="reset" value="重置"/
a href="register.php"注冊(cè)/a
/td
/tr
/table
/form
注冊(cè)頁:register.php
?php
include("conn.php");
if(isset($_POST['submit'])$_POST['submit']) {
if($_POST['username']=='')
{
echo "用戶名不能為空";
exit();
}
if($_POST['password']=='')
{
echo "密碼不能為空";
exit();
}
if($_POST['realpass']!=$_POST['password'])
{
echo "兩次密碼輸入不一致";
exit();
}
$sql="insert into member(username,real_name,password,email,headimg) values('$_POST[username]','$_POST[username]','$_POST[password]','$_POST[email]','')";
$ar=mysql_query($sql);
if($ar)
{
header("location:index.php");
}
else
{
echo mysql_error();
}
}
?
body
form action="register.php" method="post"
table border=1 align=center width=500
tr
td height=40 bgColor=#DFFFDF colspan=2會(huì)員注冊(cè) ?????????[a href="login.php"返回登錄頁/a]/td
/tr
tr
td height=40 bgColor=#fffbec 會(huì)員ID/td
tdinput type="text" name="username" id="username"http://td
/tr
tr
td height=40 bgColor=#fffbec密碼/td
tdinput type="password" name="password" id="password"http://td
/tr
tr
td height=40 bgColor=#fffbec確認(rèn)密碼/td
td
input type="password" name="realpass" id="realpass"/
/td
/tr
tr
td height=40 bgColor=#fffbecEMAIL/td
tdinput type="text" name="email" id="email"/
/tr
tr
td height=40 bgColor=#fffbec/td
tdinput type="submit" name="submit" value="注冊(cè)"/input type="reset" value="重置"/td
/tr
/table
/form
/body
主頁顯示:index.php
?php
include("conn.php");
function cutstr($str,$cutleng)
{
$str = $str; //要截取的字符串
$cutleng = $cutleng; //要截取的長(zhǎng)度
$strleng = strlen($str); //字符串長(zhǎng)度
if($cutleng$strleng)return $str;//字符串長(zhǎng)度小于規(guī)定字?jǐn)?shù)時(shí),返回字符串本身
$notchinanum = 0; //初始不是漢字的字符數(shù)
for($i=0;$i$cutleng;$i++)
{
if(ord(substr($str,$i,1))=128)
{
$notchinanum++;
}
}
if(($cutleng%2==1)($notchinanum%2==0)) //如果要截取奇數(shù)個(gè)字符,所要截取長(zhǎng)度范圍內(nèi)的字符必須含奇數(shù)個(gè)非漢字,否則截取的長(zhǎng)度加一
{
$cutleng++;
}
if(($cutleng%2==0)($notchinanum%2==1)) //如果要截取偶數(shù)個(gè)字符,所要截取長(zhǎng)度范圍內(nèi)的字符必須含偶數(shù)個(gè)非漢字,否則截取的長(zhǎng)度加一
{
$cutleng++;
}
return substr($str,0,$cutleng);
}
?
html
head
script type="text/javascript"
function All(e, itemName)
{
var aa = document.getElementsByName(itemName);
for (var i=0; iaa.length; i++)
aa[i].checked = e.checked; //得到那個(gè)總控的復(fù)選框的選中狀態(tài)
}
function Item(e, allName)
{
var all = document.getElementsByName(allName)[0];
if(!e.checked) all.checked = false;
else
{
var aa = document.getElementsByName(e.name);
for (var i=0; iaa.length; i++)
if(!aa[i].checked) return;
all.checked = true;
}
}
/script
/head
?php
include("conn.php");
if(isset($_POST['del']))
{
$mm = $_POST["selected"];
$id =implode(",",$mm);
$sql = "delete from forums where id in(".$id.")";
//echo $sql;
$result=mysql_query($sql);
echo $result?"刪除成功":"刪除失敗";
}
?
table style="BORDER-BOTTOM-WIDTH: 1px; BORDER-COLLAPSE: collapse" cellSpacing=0 cellPadding=0 width=600 align=center border=1 bordercolor=#ddddff
tr align=middle
td height=40 bgColor=#DFFFDF colspan=3論壇列表/td
/tr
tr
td colspan=3a href="login.php" style="float:right"[退出系統(tǒng)]/aa href="add_forum.php" style="float:right"[添加論壇]/a/td
td/td
/tr
tr align=middle
td height=40 bgColor=#DFFFDF width=80狀態(tài)/td
td height=40 bgColor=#DFFFDF論壇/td
td height=40 bgColor=#DFFFDF最后更新/td
/tr
?php
$sql="select * from forums";
$result=mysql_query($sql);
$num=mysql_num_rows($result);
if($num0)
{
while($row=mysql_fetch_array($result)){
?
tr align=middle
td bgColor=#fffbecinput type="checkbox" name="selected" value="1"http://td
td height=50 bgColor=#fffbec width=300
?php
echo "diva href=\"forums.php?F=".$row['ID']."\"".$row['forum_name']."/a/div";
echo cutstr($row['forum_description'],24);//最多顯示24個(gè)字節(jié),12個(gè)字,多余部分用省略號(hào)代替
echo "……";
?
/td
td height=50 bgColor=#fffbecdiv?php echo $row['last_post_time']."by".$row['last_post_author']?/div/td
/tr
?php
}
}
else
{
echo "tr bgColor=#fffbectd colspan=3對(duì)不起,論壇尚在創(chuàng)建中……/td/tr";
}
?
tr
td colspan=3????input type="checkbox" name="selected" value="1" onclick="All(this,'selected')"/全選/不全選/td
/tr
tr
tdinput type="button" name="del" id="del" value="刪除選中項(xiàng)"/
?php
?
/td
/tr
/table
/html
自己創(chuàng)建數(shù)據(jù)庫就好。
網(wǎng)站題目:php連接數(shù)據(jù)庫做留言板,php連接數(shù)據(jù)庫做留言板怎么做
當(dāng)前URL:http://sd-ha.com/article48/hcodhp.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供自適應(yīng)網(wǎng)站、ChatGPT、域名注冊(cè)、做網(wǎng)站、Google、響應(yīng)式網(wǎng)站
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請(qǐng)盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如需處理請(qǐng)聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來源: 創(chuàng)新互聯(lián)