';
//make the column headers what you want in whatever order you want
echo '
ID |
GROUP 2 |
DIVISION CODE |
DIVISION NAME |
DIVISION DESC. |
';
//loop the query data to the table in same order as the headers
$getArea = mysqli_query($conn,$sql);
$statRow = mysqli_num_rows($getArea);
if($statRow > 0){
while($row = mysqli_fetch_array($getArea)){
echo "".$row['id']." |
".$row['sub_grp_id']." |
".$row['division_code']." |
".$row['division_name']." |
".$row['division_desc']." |
";
}
}
echo '';
?>