参数化查询jqgrid
我有这个 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我现在实际上自己得到了答案......就像这样
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 ...