例如:
myweb.com/something.php?=hello
^^^
Use this string in my code
所以字符串会说hello
这有可能吗?
答案 0 :(得分:0)
假设用户输入了http://example.com/?name=Hannes
<?php
echo 'Hello ' . htmlspecialchars($_GET["name"]) . '!';
?>