I want this table of data to be displayed in 3 columns instead of 1 column as it's doing now; how would I do this with CSS ?
<?php
echo "<table><tr><th>Tours</th></tr>";
while($rowTours = $resultTours->fetch_assoc()){
echo "<tr><td><h4>{$rowTours['Destination']}</h4>";
echo "\r\n £ {$rowTours['Price']}\r\n";
echo "\r\n{$rowTours['Description']}";
echo "<img src=\"img/{$rowTours['destimg']}\"
class =\" img-circle img-thumbnail\">
</td></tr>";
}
echo "</table>";
?>