RE: [PHP-DB] Receiving ARRAY from Forms

2003-02-20 Thread Kelly Protsko
You could use sessions to pass the array to the next page easily. $_SESSION[arraylist] = $mList; Then just grab it back from the other form. If you haven't used sessions before you can get a quick overview here. http://www.theoutersphere.com/php/sessions.php Kelly -Original Message-

Re: [PHP-DB] Receiving ARRAY from Forms

2003-02-20 Thread 1LT John W. Holmes
I tried the following code but all I get back is Array. I'm trying to pass a huge array. You need to serialize the array... ? if( isset( $submit ) ) { echo array list:br; print_r( $eList ); $submit = ; } else { $mList = array(); $mList[0] = 1. hello; $mList[1] = 2. there;