<?php $date = array("08.2018", "08.2018", "08.2018"); $time = array("09:30", "10:30", "11:30"); $message = array("a", "b", "c"); //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]; echo $i[1]; echo $i[2]; echo PHP_EOL; }
You have javascript disabled. You will not be able to edit any code.