Scripts and functions that I have written or found useful

Dynamically read $_POST variables into an array

September 8th, 2006 Posted in PHP
PHP:
  1. foreach ($_POST as $key=>$value)
  2.  $url .= "&".$key."=" . $value;

Post a Comment