Re: Cleaner way to do this?

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

 



Robert Sossomon wrote:
foreach ( $_POST as $key => $value )
{
 while ($key != "submit")
 {
  \$$key = $value;
  $addtocart .= ",'\$$key'";
 }
}

The problem is that it seems to be hanging at the while loop. Is there a cleaner way to write the foreach loop so that it will dump out the "submit" key? I've been trying different combinations, and am sure it is something simple I have boffed.

I guess you want: if ($key != "submit")


And you don't need to give names to submit buttons. Then it will not be posted and the condition is not necessary.


--
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