Hello, "John Meyer" <[EMAIL PROTECTED]> wrote: > Either way, I'm not getting the interests. > ...[snip]... > > When retrieving an array from $_POST, which is the right way: > > $arrInterests = $_POST["interests[]"]; > > or > $arrInterests = $_POST["interests"]; >
Try this instead: $arrInterests = $_POST['interests']; - E -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php