如何将URL用作字符串?

时间:2013-08-17 10:16:48

标签: php

例如:

myweb.com/something.php?=hello
                          ^^^
                       Use this string in my code

所以字符串会说hello 这有可能吗?

1 个答案:

答案 0 :(得分:0)

假设用户输入了http://example.com/?name=Hannes

<?php
 echo 'Hello ' . htmlspecialchars($_GET["name"]) . '!';
?>

http://php.net/manual/en/reserved.variables.get.php