how can we access the data sent through the url with the get method?
ReportQuestion
2 years ago 788 views
To access the data sent via the GET method, we use $_GET array like this:
www.url.com?var=value
$variable = $_GET["var"]; this will now contain 'value'
Thread Reply