İşte bir örnek:
for($i=1; $i < 10; $i++){
$marray[] = array($name, $email, $password); // Lets just say for now, there is real
// data for each online being input
}
foreach ($marray as $e){
echo "Name: ". $e[0];
echo "Email: ". $e[1];
}
I forgot to mention: This script works fine on both my servers. But, When I include array_unique before "Foreach" is called, it doesn't work, no error message or anything.