I have a question regarding the global variable $ _REQUEST in php. When you have a receipt and a message sent with the same variable name, does php prioritize any of them? I.e. if I have $ _POST ['var'], as well as $ _GET ['var'] sent to the page, will $ _REQUEST ['var'] contain the message or get, or will it perform a different type of assignment?
Thanks!
source share