enter code here
您好,我在我的网站上有一个显示广告的数据表(看图像)
http://imageshack.com/a/img673/5302/id8xhB.png
我不认为这是最好的方式,因为我需要像电子商店这样的东西。我需要解雇我的项目并通过asc或desc或视图对其进行排序(我有查看列到我的数据库)。
index.php中的表格代码
<table id="example" class="compact">
<thead>
<tr>
<th>1</th>
<th>2</th>
<th>3</th>
<th>4</th>
<th>5</th>
<th>6</th>
</tr>
</thead>
<tbody>
<?php
$i=1;
$z=0;
include 'connection/search_arxiki.php';
while ($ad = mysqli_fetch_assoc($r)) {
if (($z % 6) == 0){
echo "<tr>";
}
echo "<td>";?>
<center>
<a class="title" href="ad_show.php?id=<?php echo $ad['id']; ?>"><?php echo $ad['title']; ?>
<br>
<img src="<?php echo $ad['image']?>">
</a>
</center>
<?php echo "</td>";
if (($i % 6) == 0){
echo "</tr>";
}
$i = $i + 1;
$z = $z + 1;
}
?>
</tbody>
</table>
我更喜欢像javascript这样的东西,因为php会使服务器超载。 感谢您的意见。
答案 0 :(得分:0)
你需要在某个地方安装PHP。您可以做的是,创建一个处理数据库请求并获取行的PHP页面,在客户端,您可以使用AJAX从PHP页面获取数据。像这样:
$(document).ready(function(){
$('tbody').load('phppage.php');
});
点击后,您只需通过ajax发送数据并更新内容。
您无法避免服务器端代码来实现此目的。