Handling HTTP request arguments in a PHP script?

1 This is a bit of bad form as the $_REQUEST variable is made from any of $_GET, $_POST or $_COOKIE. – Paul. S Dec 3 at 11:47 ok you can use $_GET and $_REQUEST alternate – Sonal Khunt Dec 3 at 11:48.

$_GET'id' will hold URL arguments, $_POST'id' analog for form elements You should NOT use $_REQUEST, best of all you know where your user input comes from, so use $_GET if you expect GET requests, and $_POST for form processing. (Same for $_COOKIE and $_SESSION).

I cant really gove you an answer,but what I can give you is a way to a solution, that is you have to find the anglde that you relate to or peaks your interest. A good paper is one that people get drawn into because it reaches them ln some way.As for me WW11 to me, I think of the holocaust and the effect it had on the survivors, their families and those who stood by and did nothing until it was too late.

Related Questions