How Can I Get Result Similar To $_Request In Php.

PHP programming forum. Ask questions or help people concerning PHP code. Don't understand a function? Need help implementing a class? Don't understand a class? Here is where to ask. Remember to do your homework!

Moderator: General Moderators

Post Reply
yusuf_ahmed
Forum Newbie
Posts: 2
Joined: Thu Jul 09, 2015 6:20 am

How Can I Get Result Similar To $_Request In Php.

Post by yusuf_ahmed »

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"
User avatar
requinix
Spammer :|
Posts: 6617
Joined: Wed Oct 15, 2008 2:35 am
Location: WA, USA

Re: How Can I Get Result Similar To $_Request In Php.

Post by requinix »

yusuf_ahmed
Forum Newbie
Posts: 2
Joined: Thu Jul 09, 2015 6:20 am

Re: How Can I Get Result Similar To $_Request In Php.

Post by yusuf_ahmed »

thnks requinix

Is there no rating feature for the answer posted. I was looking around to give thumps up to your answer, but could not find such feature.
Post Reply