新聞標(biāo)題格式如下:
創(chuàng)新互聯(lián)公司專注于烏魯木齊網(wǎng)站建設(shè)服務(wù)及定制,我們擁有豐富的企業(yè)做網(wǎng)站經(jīng)驗(yàn)。 熱誠(chéng)為您提供烏魯木齊營(yíng)銷型網(wǎng)站建設(shè),烏魯木齊網(wǎng)站制作、烏魯木齊網(wǎng)頁(yè)設(shè)計(jì)、烏魯木齊網(wǎng)站官網(wǎng)定制、小程序設(shè)計(jì)服務(wù),打造烏魯木齊網(wǎng)絡(luò)公司原創(chuàng)品牌,更為您提供烏魯木齊網(wǎng)站排名全網(wǎng)營(yíng)銷落地服務(wù)。
a?href="xinwen.php?id=1"新聞標(biāo)題/a
!--這里的id的值你自行從數(shù)據(jù)庫(kù)讀取--
新聞詳細(xì)頁(yè)面
?php
$ID??=?$_GET['id'];?//取得url中id的值
$Sql?=?'select?*?from?表?where?id?=?'?.?$ID;?//拼接sql數(shù)據(jù)庫(kù)命令
//下面的你自己寫(xiě)
新聞標(biāo)題 數(shù)據(jù)的id ,點(diǎn)擊的時(shí)候根據(jù)這個(gè)數(shù)據(jù)的id 去數(shù)據(jù)庫(kù)中查找此條記錄就是數(shù)據(jù)庫(kù)中的最新保存的數(shù)據(jù)了
比如:
顯示數(shù)據(jù)庫(kù)的sql : select news_id,news_title from news_table order by date;
php 頁(yè)面的 點(diǎn)擊標(biāo)題的連接地址 shownews.php?id= news_id
上面就不這條數(shù)據(jù)的id傳過(guò)去了,你再在shownews.php頁(yè)面根據(jù)這個(gè)id 去顯示
sql 大概如下:select news_title,news_cotent,news_time from news_table where news_id= 得到的id
-00000---新增加了內(nèi)容了》》
你的用法錯(cuò)了,select 回來(lái)的是個(gè)數(shù)據(jù)指針,
你先看看 接收到的id 對(duì)不對(duì), echo id;
你得到的row 是個(gè)二維數(shù)組
在查找有效記錄下,你還要foreach 顯示出來(lái)
或者直接 $row[0]['content']
你會(huì)做PHP后臺(tái)了,前臺(tái)首頁(yè)只是從數(shù)據(jù)庫(kù)里調(diào)用新聞的標(biāo)題和ID就行了,然后點(diǎn)擊進(jìn)入到新聞的詳情頁(yè),這頁(yè)調(diào)用的是指定ID的新聞標(biāo)題,內(nèi)容等想要顯示出的內(nèi)容就行 了
?php
$conn = mysql_connect ( "localhost", "root", "" );
mysql_select_db ( "bookdb" );
mysql_query ( "set names gbk" );
$sql = "select * from book;";
$rs = mysql_query ( $sql );
?
html
style type="text/css"
* {
font-family: "宋體";
fony-size: 12px
}
;
.tbhead {
background-color: #698CC3;
border: 1px solid #FFFFFF;
color: #FFFFFF;
font-weight: 800;
}
;
.tbleft {
border: 1px dashed #698CC3;
background-color: #EFEFEF;
}
;
.tbright {
background-color: #FFFFFF;
border: 1px dashed #698CC3;
}
;
/style
body bgcolor="#9ac5b5"
h1 align="center"所有書(shū)籍信息/h1
table style="border: 1px dashed #698CC3; width: 100%; line-height: 200%;"
cellpadding="0px" cellspacing="0px"
tr
td align="right" colspan="7" class="tbhead"a href="add.php"添加書(shū)籍/a/td
/tr
tr
th class="tbleft"編號(hào)/th
th class="tbleft"書(shū)名/th
th class="tbleft"出版社/th
th class="tbleft"出版時(shí)間/th
th class="tbleft"操作/th
/tr
?php
while ( $arr = mysql_fetch_array ( $rs ) ) {
echo "tr align='center'";
echo "td class='tbright'" . $arr ["bid"] . "/td";
echo "td class='tbright'" . $arr ["bname"] . "/td";
echo "td class='tbright'" . $arr ["bcbs"] . "/td";
echo "td class='tbright'" . $arr ["btime"] . "/td";
echo "td class='tbright'a href='del.php?bid=" . $arr ["bid"] . "'刪除/a a href='update.php?bid=" . $arr ["bid"] . "'修改/a/td";
echo "/tr";
}
mysql_free_result ( $rs );
mysql_close ( $conn );
?
/table
/body
/html
function(){
$查詢="select
*
from
表";
//
如果只查詢標(biāo)題,就只用些標(biāo)題的對(duì)應(yīng)字段名
//連接數(shù)據(jù)庫(kù)
for($i=0;$i$記錄數(shù);$i++){
$讀取=$lj-fetch_assoc();
//
查詢
$sid[$i]=$讀取[s_id];
$標(biāo)題[$i]
=
$讀取[s_title];
}
$arra=array
($aid,$title);
return
$arra;
}
不知可否幫你解決問(wèn)題了
既然其他數(shù)據(jù)都有并且顯示出來(lái)了,說(shuō)明插入語(yǔ)句執(zhí)行成功了,那應(yīng)該就是你的title本身沒(méi)有值,導(dǎo)致存了一個(gè)空值進(jìn)去。
檢查這種錯(cuò)誤你可以在獲取值之后先把值打印出來(lái)看看有沒(méi)有獲取到,如果沒(méi)有就去查你的表單里的數(shù)據(jù);如果獲取到了但是數(shù)據(jù)沒(méi)插進(jìn)去,你可以把sql語(yǔ)句打印出來(lái)看看有沒(méi)有錯(cuò),如果看著沒(méi)錯(cuò),但卻執(zhí)行不成功,那你就復(fù)制這條語(yǔ)句,直接到數(shù)據(jù)庫(kù)里執(zhí)行看錯(cuò)誤提示