> 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. > > Thanks, > Robert > > -- > Robert Sossomon, Business and Technology Application Technician > 4-H Youth Development Department > 200 Ricks Hall, Campus Box 7606 > N.C. State University > Raleigh NC 27695-7606 > Phone: 919/515-8474 > Fax: 919/515-7812 > robert_sossomon@xxxxxxxx foreach ( $_POST as $key => $value ) { if($key != "submit") { $addtocart .= ",$key"; } } -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php