From: "Christian Jancso" <[EMAIL PROTECTED]> > I have the following problem: > How can I use variables in the $_POST statement? > Here is my code: > > $old_station[$o] = $_POST['$i']; > $new_station[$o] = $_POST['$i'];
$old_station[$o] = $_POST[$i]; $new_station[$o] = $_POST[$i]; Variables are not evaluated within single quotes, so you were making a literal key of "$i". $old_station[$o] = $_POST["$i"]; $new_station[$o] = $_POST["$i"]; Will work, also, as the variable $i will be evaulated within the double quote string. ---John Holmes... -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php