How to decode PHP array

you can try with this

$n = sizeof($emails)/2;

for($i=0; $i<$n; $i++)
{
   echo $emails[$i]."<br/>";
}

Leave a Comment