PHP Echo post 参数被字符串包围
我有一个名为“fname”的文本框。我需要在另一页上的双引号内回显此框的输入。
用户输入: Test123
returrns: "Test123"
那么我该如何使用 $_POST["fname"] 来做到这一点?
I have a textbox named 'fname'. I need to echo out the input of this box inside double quotes on a another page.
User enters: Test123
returrns: "Test123"
so how can I do that with $_POST["fname"] ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
或者你可以使用:
如果你想在字母包围的字符串中使用它,只需使用大括号{}即可。
将 $_POST['fname'] 放在大括号中。
Or you can use:
If you want to use it in a string surrounded by letters, simply use curly brackets {}.
Put the $_POST['fname'] to curly brackets.
尝试
Try
有很多方法:
除了 nyarathotep 提到的一种之外:
There are many ways:
besides the one nyarathotep mentioned:
使用这个:
或者
当然,如果您愿意,您可以在代码中将 ' 和 " 替换为 " 或 ' ...
Use this:
Or
of course if you want to you can replace ' and " with " or ' in the code...