gpt4 book ai didi

php - mysql php 变量嵌套

转载 作者:行者123 更新时间:2023-11-30 01:24:50 25 4
gpt4 key购买 nike

我的 mysql select 语句为我输出了这样的字符串:

$domain = "test.com";
$time = "12345";

echo $result;

输出如下:

I just pull this from $domain from $time

我不知道我的 mysql select 语句还需要做什么才能在回显时正确显示它...我试图让它显示以下内容:

I just pull this from test.com from 12345

非常感谢我能得到的任何帮助!

最佳答案

只需将下一个字符串放入,

$result = "I just pull this from '$domain' from '$time'";

我添加单引号,以便您能够学习在单引号之间使用带有 php 变量的查询字符串。这是防止 SQLi 的好习惯。

关于php - mysql php 变量嵌套,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18122145/

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