Hi Kaan
try
Page 1
$testArray[0] =Apple;
$testArray[1] =Banana;
$testArray[2] =Peach;
$testA=implode("!", $testArray);echo "<INPUT NAME = \"kcompany\" TYPE = \"hidden\" VALUE=\"$testA\">";
Page2
$testArray=explode("!", $kcompany);
echo $testArray[1];HTH Steve
PartyPosters wrote:
Hello, Please can someone tell me how you pass arrays between PHP pages. I have tried something like this and have tried many variations of this but nothing working yet ;
Page 1 $testArray[0] =Apple; $testArray[1] =Banana; $testArray[2] =Peach;
echo "<INPUT NAME = \"kcompany[]\" TYPE = \"hidden\" VALUE=\"$testArray\">";
Page2 echo $testArray[1];
Many Thanks. Kaan.
-- MySQL General Mailing List For list archives: http://lists.mysql.com/mysql To unsubscribe: http://lists.mysql.com/[EMAIL PROTECTED]
