I am new to PHP programming and don’t know much in detail about _SERVER. Can _SERVER associate array be used in a PHP program to access data submitted from HTML forms through post method??
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Nope, you want $_POST for that.
$_POST gets you post data
$_GET gets you get data
$_REQUEST gets you get, post, and cookies