-3

例如:

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

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

4

1 回答 1

0

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

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

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

于 2013-08-17T10:19:19.730 回答