如何使用PHP在HTML表格中显示MySQL内容

时间:2012-09-29 04:43:13

标签: php mysql html-table

我有一个MySQL数据库,我已经导入了一个庞大的域列表 - 它们都在一个表中,它是唯一的列 - 非常简单;)

我想在我的网站上显示类似于此处的域名:http://www.statmyweb.com/archive/43001/

我希望每页列出1000个域名,并且每个页面的底部都应该有一个链接,例如“上一页”和“下一页”。

看起来非常简单,我只是不熟悉编码而且我的努力都没有奏效。如果有人可以在有时间的情况下发布代码,那将非常感激。

3 个答案:

答案 0 :(得分:0)

在mysql中选择查询添加限制1000然后一次只打印1000条记录,并使上一页和下一页链接并增加1000

<?php 
$previous=$_REQUSEST['limit'];
if($previous>0)
{
echo "<a href='index.php?limit=1000-".$previous."'>Previous</a>";
}

echo "<a href='index.php?limit=1000+."$previous."'>Next</a>";
?>

答案 1 :(得分:0)

$i= 0;
$j= 1;

$return_html = '<table>';
$total_count = count($database_results);
foreach ($database_results as $row){
   if($i == 0){
       $return_html .= '<tr>';
   }
   $return_html .= '<td>' . $row . '</td>;

   if($i == 3 || $j == $total_count){
       $return_html . '</tr>';
   }

if($j == $total_count){
   $return_html .] '</table>';
}

   i++;
   j++;
}

这就是构建表的方法。其他答案解释了其余部分。

答案 2 :(得分:0)

试试这个

<?php
 $start=0;
 $limit=10;//your limit of elements in 1 page
 $query='your query';
 //execute query and take total row count into $totalRows
 if(isset($_GET['start']))
 {
 $start=$_GET['start'];
 }
 $query.=" LIMIT ".$start.",".$limit;
 // execute query and count into $currentRows
 ?>

 <html>
  <body>
   <table>
   <?php
   for($i=0;$i<$currentRows; $i++){
   ?>
   <tr><td colspan='2'><?php echo value here?></td></tr>
   <?php
   }
   ?>
   <?php
if($start>0)
{
$prev   =   $start-$limit;
}
else
{
$prev   =   $start;
}
if(($start+$limit)<$totalRows)
{
$next   =   $start+$limit;
}
else
{
$next   =   $start;
}
?>
   <tr><td><a href='yourpage.php?start=<?php echo $prev; ?>'>Previous</a></td><td><a href='yourpage.php?start=<?php echo $next; ?>'>Next</a></td></tr>
   </table>
  <body>
 </html>