I would like to display data, two columns per row during my foreach. I would like my result to look like the following:
V
-
2020-12-03 09:06
This would give you great table and for loop concept--
";
for($y=1; $y<=20; $y++)
{
echo "| ";
echo $x*$y;
echo " | ";
}
echo "";
}
?>
|