无论如何使用jquery来控制数据库中的条目限制。
我有PHP Data.php
:
mysqli_query($con,"(select * from social order by id desc limit 30) order by id asc");
但是我希望能够编辑limit 30
并使用$.get()
在jquery中调用click函数时再次请求php。这可能吗?
$.get()
:
$.get("Data.php", function (data3) {
$(".data").html(data3);
});
Data.php
$limit_amt = mysqli_real_escape_string($_GET['limit']);
$result = mysqli_query($con,"(select * from social order by id desc limit ".$limit_amt.") order by id asc");
while($row = mysqli_fetch_array($result))
{
echo "<tr class='border_bottom'>";
echo "<th scope='col'>";
echo "<div align='left'><span class='name'>".$row['name']."</span></div><br />";
echo "<span class='text'>".$row['comunicate']."</span><br />";
echo "<div align='right'><span class='time'>".$row['date']."</span></div>";
echo "</th>";
echo "</tr>";
}
Index.php
$.get("Data.php",{ limit: 40}, function (data3) { .
$(".data").html(data3);
});
答案 0 :(得分:1)
在$.get()
:
//#btn would represent an HTML element like <input type="button" id="btn">
$("#btn").click(function(e){
// I have given a static value here but you can change it to a variable or
// however you want to pass
$.get("Data.php",{ limit: 40}, function (data3) { .
$(".data").html(data3);
});
}
在Data.php
:
//Fetching the value and saving into a variable
$limit_amt = mysqli_real_escape_string($_GET['limit']);
//Using the fetched value to change the limit amount
mysqli_query($con,"(select * from social order by id desc limit ".$limit_amt.") order by id asc");
答案 1 :(得分:0)
我认为查询中存在使用
的错误请尝试
$result = mysqli_query($con,"(select * from social order by id desc limit ".$limit_amt.")");
而不是
$result = mysqli_query($con,"(select * from social order by id desc limit ".$limit_amt.") order by id asc");