I’m trying to pass a URL as a url parameter in php but when I try to get this parameter I get nothing
I’m using the following url form:
http://localhost/dispatch.php?link=www.google.com
I’m trying to get it through:
$_GET['link'];
But nothing returned. What is the problem?