更新 php-mysql 查询
我有一个 php-mysql 应用程序,用于跟踪和显示服务台的分配。它从当月的作业网格开始。
有上一个和下一个栏,单击它们时,会显示上个月或下个月的作业,这是使用 PHP 自行提交来完成的。
我很想修改该应用程序,以便可以通过 jQuery 的 $.post() 方法处理上个月或下个月的点击,但不知道如何更新我的 SQL 语句并重新查询。
SQL 语句的形式为
$sql = "SELECT * FROM $tbl WHERE monthnum = ".$monum
I have a php-mysql application that tracks and displays assignments to a help desk. It starts with a grid of assignments for the current month.
There are previous and next bars, which when clicked, display the previous or next month's assignments and this is accomplished using PHP self-submission.
I'd love to revise the application so that a click on previous or next month can be handled by jQuery's $.post() method but cant't figure out how to update my SQL statement and re-query.
The SQL statement has the form
$sql = "SELECT * FROM $tbl WHERE monthnum = ".$monum
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
如果你在 jQuery API 中查找
post()
,你会找到解决方案。 可以通过$_GET
发送它们来实现你想要的如果你想向php文件添加参数,
if you look up
post()
in jQuery API, you will find a solution. you can achieve what you want by usingif you want to add parameters to php file, send them through
$_GET
请参阅此链接 http://api.jquery.com/jQuery.post/
Refer this link http://api.jquery.com/jQuery.post/
您可以使用 jquery get 方法。
// 替换当前表 html 或执行某些操作来显示检索到的数据
并使用 GET 变量“month”来决定需要从 get_data.php 文件返回哪个月份的数据
You can use jquery get method.
// replace current table html or do something to show retrieved data
And use the GET variable 'month' to decide which month data you need to return from get_data.php file