更新 php-mysql 查询

发布于 2024-12-18 14:40:33 字数 296 浏览 0 评论 0原文

我有一个 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

一个人的夜不怕黑 2024-12-25 14:40:33

如果你在 jQuery API 中查找 post(),你会找到解决方案。 可以通过$_GET发送它们来实现你想要的

$.post('path_to_php_file_that_selects_data_from_db_and_echoes_it', function(data) {
  $('where_you_want_to_put_updated_data').html(data);
});

如果你想向php文件添加参数,

if you look up post() in jQuery API, you will find a solution. you can achieve what you want by using

$.post('path_to_php_file_that_selects_data_from_db_and_echoes_it', function(data) {
  $('where_you_want_to_put_updated_data').html(data);
});

if you want to add parameters to php file, send them through $_GET

Bonjour°[大白 2024-12-25 14:40:33
$.post('ajax/test.html', function(data) {
  $('.result').html(data);
});

请参阅此链接 http://api.jquery.com/jQuery.post/

$.post('ajax/test.html', function(data) {
  $('.result').html(data);
});

Refer this link http://api.jquery.com/jQuery.post/

泅渡 2024-12-25 14:40:33

您可以使用 jquery get 方法。

$.get("get_data.php", { month: "NEXT_MONTH" } , function(data) {

// 替换当前表 html 或执行某些操作来显示检索到的数据

  $('view-table').html(data);

});

并使用 GET 变量“month”来决定需要从 get_data.php 文件返回哪个月份的数据

You can use jquery get method.

$.get("get_data.php", { month: "NEXT_MONTH" } , function(data) {

// replace current table html or do something to show retrieved data

  $('view-table').html(data);

});

And use the GET variable 'month' to decide which month data you need to return from get_data.php file

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文