参数化查询jqgrid

发布于 2024-08-27 03:37:12 字数 232 浏览 7 评论 0原文

我有这个 mysql 表,我想用 jqgrid 显示。当我想显示参数化查询时,就会出现问题。

例如,假设我想显示所有 21 岁以上的学生。我有一个名为age 的变量,我想将其传递到 server.php 文件,我可以在其中构造 XML 或 JSON。

在服务器上我看到一些变量,例如 $examp = $_REQUEST["q"];但我不知道在 server.php 中哪里放置要访问的 $age

谢谢

I have this mysql tables I want to display with jqgrid. The problem appears when I want to display a parametrized query.

For example lets say I want to display all students older than 21. I have this variable named age which I want to pass to server.php file where I can construct the XML or JSON.

On server I see some variables like $examp = $_REQUEST["q"]; but I dont know where to put $age to be accesed in server.php

Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

苍景流年 2024-09-03 03:37:12

我现在实际上自己得到了答案......就像这样

jQuery("#editgrid").jqGrid({
url:'server.php?id=< ? php 回显 $id; ? > ',等等...

server.php 有一行类似 $id = $_GET['id'] 的行,从这里我可以根据需要构造我的 sql 查询。

这就是我需要的......

I actually get the answer myself right now ... it's like this

jQuery("#editgrid").jqGrid({
url:'server.php?id=< ? php echo $id; ? > ', and so on ...

The server.php has a line like $id = $_GET['id'], and from here I can construct my sql querys as I need.

This is what I needed ...

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