Answers

Question and Answer:

  Home  Junior PHP Developer

⟩ How can we access the data sent through the URL with the GET method?

In order to access the data sent via the GET method, we you use $_GET array like this:

www.rendc.org?var=value

$variable = $_GET[“var”]; this will now contain ‘value’

 237 views

More Questions for you: