<?php
$date = array([1],[2]);
$time = array([3],[4]);
$message = array([5],[6]);
//this are my arrays that are filled from mysql result and this works in this arrays all is all data.
$iterator = new MultipleIterator();
$iterator->attachIterator(new ArrayIterator($date));
$iterator->attachIterator(new ArrayIterator($time));
$iterator->attachIterator(new ArrayIterator($message));
foreach($iterator as $i)
{
echo $i[0][0];
echo $i[1][0];
echo $i[2][0];
echo PHP_EOL;
}