CodingForums.com
>
:: Server side development
>
PHP
> iterating _POST array
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.
vBulletin® v3.8.2, Copyright ©2000-2012, Jelsoft Enterprises Ltd.