Hi, Is not working, is it correct way???? File1.php <? $colors = array('red','blue','green','yellow'); ?> <form action="file2.php" method="post"> <input type="hidden" type" name="colors" value="<?=$colors?>"> </fomr>
File2.php <? echo $colors[0]; echo $colors[1]; echo $colors[2]; echo $colors[4]; ?> imee