PHP 启动页面生成器

发布于 2024-11-30 11:21:38 字数 463 浏览 1 评论 0原文

我正在尝试创建一个启动页面生成器,但有一个小问题。

$accountid = $_POST['accountid'];

(我还尝试使用 $_GET 和 $_REQUEST,表单页面已完成并且名称正确)

$reflink = "< a href="http://www.site.com/?ref=$accountid">today< / a>";

echo "Join " . $reflink . "line breaks here;

问题是斜杠 // 也用于注释,并且当删除 http:// 时链接不起作用在服务器文件中进行搜索,例如 site.com/files/site.com/?r=

我也尝试过使用 www.,但不起作用。

任何帮助表示赞赏。

我在代码中添加了一些空格,否则无法正常显示。

I am trying to create a splash page generator and I have a small problem.

$accountid = $_POST['accountid'];

(I also tried with $_GET and $_REQUEST and the form page is done and the name is correct)

$reflink = "< a href="http://www.site.com/?ref=$accountid">today< / a>";

echo "Join " . $reflink . "line breaks here;

The problem is that the slashes // are used for comments too and the link is not working, when removing the http:// it searches in the server files like site.com/files/site.com/?r=

I also tried with www., not working.

Any help is appreciated.

I have put some spaces inside the code, otherwise it wouldn't show properly.

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

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

发布评论

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

评论(2

避讳 2024-12-07 11:21:38

据我理解你的问题,你需要转义引号:

$reflink = "< a href=\"http://www.site.com/?ref=$accountid\">today< / a>";

或:

$reflink = "< a href='http://www.site.com/?ref=$accountid'>today< / a>";

如果 $accountid 是一个整数,我也会使用:(

$accountid = (int) $_POST['accountid'];

无论如何我都会清理它,但似乎是一个整数...)

As far as I can understand your question, you need to escape the quotes:

$reflink = "< a href=\"http://www.site.com/?ref=$accountid\">today< / a>";

or:

$reflink = "< a href='http://www.site.com/?ref=$accountid'>today< / a>";

And if $accountid is an integer, I would also use:

$accountid = (int) $_POST['accountid'];

(I would clean it up anyway, but it seems it´s an integer...)

傲世九天 2024-12-07 11:21:38

您需要转义引号:

$reflink = "< a href=\"http://www.site.com/?ref=$accountid\">today< / a>";

You need to escape your quote marks:

$reflink = "< a href=\"http://www.site.com/?ref=$accountid\">today< / a>";
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文