[PHP-DB] Receiving ARRAY from Forms

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

RE: [PHP-DB] Receiving ARRAY from Forms

2003-02-20 Thread Kelly Protsko
- From: Squirrel User [mailto:[EMAIL PROTECTED]] Sent: February 20, 2003 9:41 AM To: [EMAIL PROTECTED] Subject: [PHP-DB] Receiving ARRAY from Forms I tried the following code but all I get back is Array. I'm trying to pass a huge array. ? if( isset( $submit ) ) { echo array list:br

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;