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";
$mList[2] = "3. How are you";
$fShow = <<<EOD
<p>Press Submit Button to test</p>
<form method="POST" action="$PHP_SELF" name="Test Array">
<p><input type="submit" value="Submit" name="submit">
<input type="reset" value="Reset" name="B2"></p>
<input type="hidden" name="eList[]" value="$mList">
</form>
EOD;
echo $fShow;
}
?>
-------------------------------------------------
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