Beginners Questions... ForEach $_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
stoneferry
Forum Newbie
Posts: 9
Joined: Sat Feb 16, 2008 10:39 am

Beginners Questions... ForEach $_POST

Post by stoneferry »

hi all, I'd just like to know the code needed to output all $_POST variables to the screen.

FOREACH something or other, unless there's another easier way?

Thanks
User avatar
jayshields
DevNet Resident
Posts: 1912
Joined: Mon Aug 22, 2005 12:11 pm
Location: Leeds/Manchester, England

Re: Beginners Questions... ForEach $_POST

Post by jayshields »

Code: Select all

print_r($_POST);
Post Reply