SoFunction
Updated on 2025-04-08

Challenge the source code of the best message book (V)

<html>
<title>Message Book</title>
<body bgcolor=white>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<style type="text/css">

<!--
td {  font-family: "Stick", "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: "Stick", "serif"; font-size: 11pt}
tr {  font-family: "Stick", "serif"; font-size: 11pt}
.unnamed1 {  font-size: 9pt; font-weight: bold}
.p9 {  font-family: "Stick"; font-size: 11pt}
.unnamed2 {  font-size: 11pt}
-->
</style>
</head>
<h1><center><font color="green" size=7>Message information</font></center></h1>

<?php  
      require('');  
?>


<?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>There is no data in the table!<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 "<<Previous $number_records_to_display message</a>";

   }

else
  {
echo "|No message has been left before";

  }

echo "</td><td width=52% align=center>";

    $t2=$initial_record+1;

echo "This page shows the <font color=green>$t2</font> to <font color=green>$next_index</font>
A total of <font color=blue>$number_of_records</font> messages";

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 "Follow $number_records_to_display message>></a>";
  }  
else
  {
echo "No comments left behind|";

  }

echo "</td></tr></table>";
echo "</center><p>";

?>

<center>

<a href=><h4>[I want to leave a message too]</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('');
}

?>
</table>
</center>

<p>
<?php  
echo "<center>";
echo "<table border=0><tr><td>";
echo "Go to the first";

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 "Page  Total <font color=blue> $number_of_pages </font> pages";
echo "</td></tr></table>";
echo "</center><p>";

?>

<hr></hr>
<center>Free message book is provided by <a href="" >Little Bear</a> Technical support</center>


</body>
</html>


[The copyright of this article is jointly owned by the author and Aoso.com. If you need to reprint it, please indicate the author and source]