How to get a value of the $_GET?
E.G
How to get number 14 from action="doSomething.php?OrderNumber=14"
I know how to check if the orderNumber === "14", but I need to get this value and use it somewhere else.
Any suggestion much appreciated.
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.
You can use
$_GET['OrderNumber']or$_REQUEST['OrderNumber']