I'm trying to pass a URL to PHP as a URL parameter, but when I try to get the parameter, I get nothing.
The URL I use is of the form:
http://localhost/dispatch.php?link=www.google.com
I try Getting it via $_GET['link']
returns no results. what is the problem?
$_GET不是一个函数或语言结构,它只是一个变量(一个数组)。尝试以下操作: