Re: Array form processing

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



Am I on the right track?  I don't know what to do with the second "FOREACH"

<?php

foreach($_REQUEST as $key => $val) {
     $$key = $val;
	 echo $key . ": " . $val . "<br>";

	 if ( $val == "Array" ) {
		$i=0;

			foreach ($val) {
				echo "$val[$i]<br>";
				$i++;
			}

	 }
}

?>


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[Index of Archives]     [PHP Home]     [Apache Users]     [PHP on Windows]     [Kernel Newbies]     [PHP Install]     [PHP Classes]     [Pear]     [Postgresql]     [Postgresql PHP]     [PHP on Windows]     [PHP Database Programming]     [PHP SOAP]

  Powered by Linux