Squirrel User wrote:
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
-- The above message is encrypted with double rot13 encoding. Any unauthorized attempt to decrypt it will be prosecuted to the full extent of the law.
-- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php