我一直无法找到符合我简单问题的任何结果,所以这里就是..
我在使用PHP时需要一个“更新”按钮(类似于Facebook),当我查看从我的网站上检索数据的信息时。谁能向我解释我应该怎么做呢?感谢。
答案 0 :(得分:0)
使用“content”列中的新闻和另一列“id”(类型为int,主索引+自动增量)创建一个mysql数据库表(news_table)。
将此文件设为get_news.php:
<?php
$start = mysql_real_escape_string(strip_tags(stripslashes($_REQUEST["start"])));
if (!isset($start))
$start = 0;
$sql = mysql_query("SELECT * FROM news_table WHERE id >= $start LIMIT 15")
if (!$sql || mysql_num_rows($sql)==0)
exit("There are no more news.");
while ($post = mysql_fetch_array($sql)) {
echo "<li>";
echo $post['content'];
echo "</li>"
}
?>
在你的主文件中:
<ul class="news">
<li>Blabla 1</li>
<li>Blabla 2</li>
</ul>
<button class="load-more" onclick="">Load more...</button>
<script src="http://code.jquery.com/jquery-latest.js"></script>
<script>
var lastPost = 0;
function loadNews() {
$('.news').load('get_news.php?start='+lastPost);
lastPost += 15;
}
$('button.load-more').click(loadNews);
$(function () {
loadNews();
});
</script>
祝你好运!!