挑戰(zhàn)最棒的留言本的源碼(五)
更新時(shí)間:2006年10月09日 00:00:00 作者:
<html>
<title>留言本</title>
<body bgcolor=white>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<style type="text/css">
<!--
td { font-family: "宋體", "serif"; font-size: 9pt; font-weight: normal}
a:link { text-decoration: none}
a:hover { color: #999999}
a:visited { text-decoration: none; font-weight: normal}
body { font-family: "宋體", "serif"; font-size: 11pt}
tr { font-family: "宋體", "serif"; font-size: 11pt}
.unnamed1 { font-size: 9pt; font-weight: bold}
.p9 { font-family: "宋體"; font-size: 11pt}
.unnamed2 { font-size: 11pt}
-->
</style>
</head>
<h1><center><font color="green" size=7>留言信息</font></center></h1>
<?php
require('config.php');
?>
<?php
$initial_record=0;
$sort_field='key_liuyan';
$sort_direction='DESC';
if (strlen($arr_request['initial_record']))
{
$initial_record=$arr_request['initial_record'];
$sort_field=$arr_request['sort_field'];
$sort_direction=$arr_request['sort_direction'];
}
$str_sql_all="select count(*) as number_of_records from $table_name ";
$result=mysql_db_query($db_name,$str_sql_all,$id_link);
if (!result)
{ affy_error_exit('SQL select execution has failed.');}
$record=@mysql_fetch_object($result);
$number_of_records=$record->number_of_records;
if (strlen($sort_field)==0)
{
$str_sql="select * from $table_name
limit $initial_record,$number_records_to_display ";
}
else
{
$str_sql="select * from $table_name order by $sort_field $sort_direction
limit $initial_record,$number_records_to_display ";
}
$result=mysql_db_query($db_name,$str_sql,$id_link);
if (!$result)
{ affy_error_exit('SQL select execution has failed.');}
$number_of_records_on_current_page=@mysql_num_rows($result);
if ($number_of_records<1)
{ echo '<p>表中沒有數(shù)據(jù)!<p>';}
else
{
$next_index=$initial_record+$number_records_to_display;
if ($next_index>$number_of_records)
$next_index=$number_of_records;
$prev_index=$initial_record-$number_records_to_display;
if ($prev_index<0)
{
$prev_index=0;
}
}
echo "<center>";
echo "<table border=0><tr bgcolor=#f1f1f1><td width=24% align=left>";
if ($initial_record!=0)
{
$t1="initial_record=$prev_index";
$sort="sort_field=$sort_field";
$asc="sort_direction=$sort_direction";
echo "<a href="$PHP_SELF?$asc&$sort&$t1 ">";
echo "<<前 $number_records_to_display 條留言</a>";
}
else
{
echo "|前面沒有留言了";
}
echo "</td><td width=52% align=center>";
$t2=$initial_record+1;
echo "本頁(yè)顯示第 <font color=green>$t2</font> 到 <font color=green>$next_index</font>
條留言,共<font color=blue>$number_of_records</font>條留言";
echo "</td><td width=24% align=right>";
if ($next_index!=$number_of_records)
{
$t1="initial_record=$next_index";
$sort="sort_field=$sort_field";
$asc="sort_direction=$sort_direction";
echo " <a href="$PHP_SELF?$asc&$sort&$t1 ">";
echo "后 $number_records_to_display 條留言>></a>";
}
else
{
echo "后面沒有留言了|";
}
echo "</td></tr></table>";
echo "</center><p>";
?>
<center>
<a href=index.html><h4>[我也要留言]</h4></a>
<p>
<table border="0",width="95%" cellspacing="0" cellpadding="0">
<?php
for ($iindex=0;$iindex<$number_of_records_on_current_page;$iindex++)
{
$record=mysql_fetch_object($result);
require('display.inc');
}
?>
</table>
</center>
<p>
<?php
echo "<center>";
echo "<table border=0><tr><td>";
echo "轉(zhuǎn)到第";
if (($number_of_records % $number_records_to_display)==0)
{
$number_of_pages=$number_of_records / $number_records_to_display;
}
else
{
$number_of_pages=($number_of_records-($number_of_records % $number_records_to_display))/$number_records_to_display+1;
}
$sort="sort_field=$sort_field";
$asc="sort_direction=$sort_direction";
for ($ii=1;$ii<=$number_of_pages;$ii++)
{
$yeshu=($ii-1)*$number_records_to_display ;
$t1="initial_record=$yeshu ";
if ($initial_record!=$yeshu)
{
echo "<a href="$PHP_SELF?$asc&$sort&$t1 ">";
echo "[ $ii ]</a>";
}
else
echo "[ $ii ]";
}
echo "頁(yè) 共<font color=blue> $number_of_pages </font>頁(yè)";
echo "</td></tr></table>";
echo "</center><p>";
?>
<hr></hr>
<center>免費(fèi)留言本由<a href="http://little.oso.com.cn" >小熊</a>提供技術(shù)支持</center>
</body>
</html>
【本文版權(quán)歸作者與奧索網(wǎng)共同擁有,如需轉(zhuǎn)載,請(qǐng)注明作者及出處】
<title>留言本</title>
<body bgcolor=white>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<style type="text/css">
<!--
td { font-family: "宋體", "serif"; font-size: 9pt; font-weight: normal}
a:link { text-decoration: none}
a:hover { color: #999999}
a:visited { text-decoration: none; font-weight: normal}
body { font-family: "宋體", "serif"; font-size: 11pt}
tr { font-family: "宋體", "serif"; font-size: 11pt}
.unnamed1 { font-size: 9pt; font-weight: bold}
.p9 { font-family: "宋體"; font-size: 11pt}
.unnamed2 { font-size: 11pt}
-->
</style>
</head>
<h1><center><font color="green" size=7>留言信息</font></center></h1>
<?php
require('config.php');
?>
<?php
$initial_record=0;
$sort_field='key_liuyan';
$sort_direction='DESC';
if (strlen($arr_request['initial_record']))
{
$initial_record=$arr_request['initial_record'];
$sort_field=$arr_request['sort_field'];
$sort_direction=$arr_request['sort_direction'];
}
$str_sql_all="select count(*) as number_of_records from $table_name ";
$result=mysql_db_query($db_name,$str_sql_all,$id_link);
if (!result)
{ affy_error_exit('SQL select execution has failed.');}
$record=@mysql_fetch_object($result);
$number_of_records=$record->number_of_records;
if (strlen($sort_field)==0)
{
$str_sql="select * from $table_name
limit $initial_record,$number_records_to_display ";
}
else
{
$str_sql="select * from $table_name order by $sort_field $sort_direction
limit $initial_record,$number_records_to_display ";
}
$result=mysql_db_query($db_name,$str_sql,$id_link);
if (!$result)
{ affy_error_exit('SQL select execution has failed.');}
$number_of_records_on_current_page=@mysql_num_rows($result);
if ($number_of_records<1)
{ echo '<p>表中沒有數(shù)據(jù)!<p>';}
else
{
$next_index=$initial_record+$number_records_to_display;
if ($next_index>$number_of_records)
$next_index=$number_of_records;
$prev_index=$initial_record-$number_records_to_display;
if ($prev_index<0)
{
$prev_index=0;
}
}
echo "<center>";
echo "<table border=0><tr bgcolor=#f1f1f1><td width=24% align=left>";
if ($initial_record!=0)
{
$t1="initial_record=$prev_index";
$sort="sort_field=$sort_field";
$asc="sort_direction=$sort_direction";
echo "<a href="$PHP_SELF?$asc&$sort&$t1 ">";
echo "<<前 $number_records_to_display 條留言</a>";
}
else
{
echo "|前面沒有留言了";
}
echo "</td><td width=52% align=center>";
$t2=$initial_record+1;
echo "本頁(yè)顯示第 <font color=green>$t2</font> 到 <font color=green>$next_index</font>
條留言,共<font color=blue>$number_of_records</font>條留言";
echo "</td><td width=24% align=right>";
if ($next_index!=$number_of_records)
{
$t1="initial_record=$next_index";
$sort="sort_field=$sort_field";
$asc="sort_direction=$sort_direction";
echo " <a href="$PHP_SELF?$asc&$sort&$t1 ">";
echo "后 $number_records_to_display 條留言>></a>";
}
else
{
echo "后面沒有留言了|";
}
echo "</td></tr></table>";
echo "</center><p>";
?>
<center>
<a href=index.html><h4>[我也要留言]</h4></a>
<p>
<table border="0",width="95%" cellspacing="0" cellpadding="0">
<?php
for ($iindex=0;$iindex<$number_of_records_on_current_page;$iindex++)
{
$record=mysql_fetch_object($result);
require('display.inc');
}
?>
</table>
</center>
<p>
<?php
echo "<center>";
echo "<table border=0><tr><td>";
echo "轉(zhuǎn)到第";
if (($number_of_records % $number_records_to_display)==0)
{
$number_of_pages=$number_of_records / $number_records_to_display;
}
else
{
$number_of_pages=($number_of_records-($number_of_records % $number_records_to_display))/$number_records_to_display+1;
}
$sort="sort_field=$sort_field";
$asc="sort_direction=$sort_direction";
for ($ii=1;$ii<=$number_of_pages;$ii++)
{
$yeshu=($ii-1)*$number_records_to_display ;
$t1="initial_record=$yeshu ";
if ($initial_record!=$yeshu)
{
echo "<a href="$PHP_SELF?$asc&$sort&$t1 ">";
echo "[ $ii ]</a>";
}
else
echo "[ $ii ]";
}
echo "頁(yè) 共<font color=blue> $number_of_pages </font>頁(yè)";
echo "</td></tr></table>";
echo "</center><p>";
?>
<hr></hr>
<center>免費(fèi)留言本由<a href="http://little.oso.com.cn" >小熊</a>提供技術(shù)支持</center>
</body>
</html>
【本文版權(quán)歸作者與奧索網(wǎng)共同擁有,如需轉(zhuǎn)載,請(qǐng)注明作者及出處】
相關(guān)文章
3種平臺(tái)下安裝php4經(jīng)驗(yàn)點(diǎn)滴
3種平臺(tái)下安裝php4經(jīng)驗(yàn)點(diǎn)滴...2006-10-10PHP isset()與empty()的使用區(qū)別詳解
通過(guò)對(duì)PHP語(yǔ)言的學(xué)習(xí),應(yīng)該知道它是基于函數(shù)的一款HTML腳本語(yǔ)言。龐大的函數(shù)庫(kù)支持著PHP語(yǔ)言功能的實(shí)現(xiàn)。下面我們?yōu)榇蠹医榻B有關(guān)PHP函數(shù)isset()與empty()的相關(guān)用法。2010-08-08利用static實(shí)現(xiàn)表格的顏色隔行顯示
利用static實(shí)現(xiàn)表格的顏色隔行顯示...2006-10-10php下連接ftp實(shí)現(xiàn)文件的上傳、下載、刪除文件實(shí)例代碼
php下連接ftp實(shí)現(xiàn)文件的上傳、下載、刪除文件實(shí)例代碼,其實(shí)php本身的強(qiáng)大,很大一部分是因?yàn)樽陨砑闪撕芏喙δ軓?qiáng)大的函數(shù)。2010-06-06一步一步學(xué)習(xí)PHP(5) 類和對(duì)象
OO的強(qiáng)大我不想再多說(shuō),如果你不認(rèn)同OO,那么當(dāng)你放眼當(dāng)前流行的語(yǔ)言,有哪個(gè)又不支持OO的,也許這個(gè)很有說(shuō)服力了吧。2010-02-02php面向?qū)ο笕ヂ?(十七) 自動(dòng)加載類
多開發(fā)者寫面向?qū)ο蟮膽?yīng)用程序時(shí),對(duì)每個(gè)類的定義建立一個(gè)PHP 源文件。一個(gè)很大的煩惱是不得不在每個(gè)腳本(每個(gè)類一個(gè)文件)開頭寫一個(gè)長(zhǎng)長(zhǎng)的包含文件的列表。2009-09-09