I\'m attempting to retrieve all that data from a database, put it in a table (more than one table if necessary) and display them column-wise in lots of 4 split across multip
$th1="";
$td1=" ";
$td2=" ";
$td3=" ";
while($row=sqlsrv_fetch_array($result, SQLSRV_FETCH_ASSOC)) {
$newDate = $row['datenow']->format('d/m/Y');
$th1.="".$newDate." ";
$td1.="".$row['nbsactive']." ";
$td2.="".$row['nbsmanysynced']." ";
$td3.="".$row['nbsthreedays']." ";
}
$th1.=" ";
$td1.="";
$td2.="";
$td3.="";
$result="".$th1.$td1.$td2.$td3."
";