PDA

View Full Version : iterating _POST array


Alev
04-28-2005, 06:41 AM
How can I iterate through it, submitted from a form and display each element?

thanks

Brandoe85
04-28-2005, 06:49 AM
Try this:

foreach ($_POST as $value)
{
echo $value . "<br>";
}

Alev
04-28-2005, 01:18 PM
Thanks man.