ramki067
02-22-2008, 03:52 AM
Hi,
I've an array $streams[] and i need to send this array to next page on submit button click. I'm trying to capture this array in the next page but with no luck, need help in this matter. Please
<form name="stream_selection" enctype="multipart/form-data" method="post" action="selected_streams.php">
<input name=streams type=hidden value=$streams[]>
Receiving the array in the next page as follows:
$stream[]=$_REQUEST['streams'];
for($i=0;$i<1000;$i++)
{
echo "$stream[i]<br>";
}
A blank page is displayed!
Thanks,
Ramki.
I've an array $streams[] and i need to send this array to next page on submit button click. I'm trying to capture this array in the next page but with no luck, need help in this matter. Please
<form name="stream_selection" enctype="multipart/form-data" method="post" action="selected_streams.php">
<input name=streams type=hidden value=$streams[]>
Receiving the array in the next page as follows:
$stream[]=$_REQUEST['streams'];
for($i=0;$i<1000;$i++)
{
echo "$stream[i]<br>";
}
A blank page is displayed!
Thanks,
Ramki.