How Can I Get Result Similar To $_Request In Php.
Posted: Thu Jul 09, 2015 7:22 am
When you send any URL like following
http://www.abc.com/index.php?name=unkno ... 0000011111
you get result in $_Request as follows
Array
(
[name] => unknown
[email] => unknown@known.com
[mobile] => 0000011111
)
can you help me writing the function for the same and get the same result set when i send the input string to the function as "name=unknown&email=unknown@known.com&mobile=0000011111"
http://www.abc.com/index.php?name=unkno ... 0000011111
you get result in $_Request as follows
Array
(
[name] => unknown
[email] => unknown@known.com
[mobile] => 0000011111
)
can you help me writing the function for the same and get the same result set when i send the input string to the function as "name=unknown&email=unknown@known.com&mobile=0000011111"