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://loc
Use this:
$parameter = $_SERVER['QUERY_STRING']; echo $parameter;
Or just use:
$parameter = $_GET['link']; echo $parameter ;