我希望 echo 的输出像这样显示,其中 $username = bob -6ren">
gpt4 book ai didi

php - PHP 内的动态链接

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

我一直在考虑回显链接的想法,它会根据我从数据库中获取的字符串进行更改。 (GET 命令)

这是我一直在使用的代码:

<?php echo '<a href="submittoplay.php?username="' . ($username) . ">";?>

我希望 echo 的输出像这样显示,其中 $username = bob

<a href="submittoplay.php?username=bob或者当我点击地址栏中的链接时submittoplay.php?username=bob

但是当我只运行代码时 "<a href="submittoplay.php?=username"显示。它似乎不想获取我从数据库收集的字符串并将其插入回显链接中。

我知道 $username 是一个有效的字符串,我测试了它并得到了我正在寻找的结果。

如有任何帮助,我们将不胜感激!

谢谢!

最佳答案

就这样:--

$username='bob';
echo '<a href="submittoplay.php?user='.$username . '">User link</a>';

关于php - PHP 内的动态链接,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19970065/

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