"Blake Schroeder" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > What is wrong with whis syntax: > $array = array("$_POST['input_1']","$_POST['input_2']");
You don't need the double quotes: $array = array($_POST['input_1'], $_POST['input_2']); Regards, Torsten -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php