POST

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
sanjeev.boina
Forum Newbie
Posts: 2
Joined: Fri Mar 13, 2009 3:33 am

POST

Post by sanjeev.boina »

How does one loop through the parameters of a POST request and display the values in PHP?
User avatar
susrisha
Forum Contributor
Posts: 439
Joined: Thu Aug 07, 2008 11:43 pm
Location: Hyderabad India

Re: POST

Post by susrisha »

Code: Select all

 
print_r($_POST);
 
sanjeev.boina
Forum Newbie
Posts: 2
Joined: Fri Mar 13, 2009 3:33 am

Re: POST

Post by sanjeev.boina »

thank u susrisha
Post Reply