php14 Jul 2008 04:50 pm
Nice way to dump out the names and values of the variables coming from a posted form:
foreach ( $_POST as $key => $value ) {
echo $key . ” ” . “=” . ” ” . $value;
echo ”<BR>”;
}
RSS feed for comments on this post. | TrackBack URI

March 20th, 2010 at 6:45 am
Thanks for this, it must be the 3rd time I have spent 15mins searching google for this article. I think its about time to bookmark it