I'm trying to output these arrays in a 3x4 table. At the moment it only outputs the first value of every array in a new row in a 1 column array. While it should be 3 columns with 'qualitypoint','quality' and 'q' next to eachother. And then in a new row 'technologies' , 'tech' and 't' next to eachother etc.
<?php
$Array1 = array('qualitypoint', 'technologies', 'India','Hey');
$Array2 = array('quality', 'tech', 'Ind','He');
$Array3 = array('q', 't', 'I','H');
echo '<table border = "3px">';
echo '<tr><td>' . implode('</tr><tr>', $Array1).'</td></tr>';
echo '<tr><td>' . implode('</tr><tr>', $Array2).'</td></tr>';
echo '<tr><td>' . implode('</tr><tr>', $Array3).'</td></tr>';
echo '</table>';
?>