Help. I've tried to pass large array through URL but it keep telling me page can not be displayed: <? // page1.php $mList = arrary(); ... // fill array with values $mList = urlencode( serialize( $mList ) ); header( "location: page2.php?mL=$mList" ); ?> <? // page2.php $mList = stripslashes( unserialize( $mL ) ); print_r( $mList ); ?> ------------------------------------------------- This mail sent through ISOT. To find out more about ISOT, visit http://isot.com -- PHP Database Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php