Tell us how can we access the data sent through the URL with the POST method?

Submitted by: Muhammad
To access the data sent this way, you use the $_POST array.

Imagine you have a form field called ‘var' on the form, when the user clicks submit to the post form, you can then access the value like this:

$_POST[“var”];
Submitted by: Muhammad

Read Online Junior Developer PHP Job Interview Questions And Answers