Hi -
So what am I doing wrong?
<?
//test1.php3
print "Pass The Array Test<BR>" ;
if( $ary ) {
print "Have ary<BR>" ;
print "Raw Pass:$ary<BR>" ;
$ary=urldecode(unserialize($ary)) ;
print "ary[3]=$ary[3]<BR>" ;
}
$ary[0]="test0" ;
$ary[1]="test1" ;
$ary[2]="test2" ;
$ary[3]="test3" ;
$ary[4]="test4" ;
$ary[5]="test5" ;
$ct=0 ;
while( $ary[$ct] ) {
print "$ary[$ct]<BR>" ;
$ct+=1;
}
$ppass=urlencode(serialize($ary)) ;
print "$ppass<BR>" ;
print "<A HREF=\"test1.php3?ary=$ppass\">Again</A><BR>" ;
?>
Thanks - Geoff