gpt4 book ai didi

javascript - 使用来自客户端的变量加载文件

转载 作者:可可西里 更新时间:2023-10-31 22:50:19 24 4
gpt4 key购买 nike

我需要在容器中加载一个文件,但使用一个参数 - 首先从数据库中获取一些数据:

$('#story').load('test.php');

测试.php

$st = $db->query("select * from users where id = " . $id);  

... processing variables... load the finished content

这里我需要来自客户端的$id。可能吗?

最佳答案

是的..你可以通过url查询

$('#story').load('test.php?id=1');

test.php

$id = isset($_REQUEST['id'])?$_REQUEST['id']):'';
$st = $db->query("select * from users where id = " . $id);

关于javascript - 使用来自客户端的变量加载文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54802169/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com