include("backend/ConnectionString.php"); $sql = "Select * From tblAbout order by Date desc"; $result = mysql_query($sql,$connection) or exit('$sql failed: '.mysql_error()); while ($row = mysql_fetch_array($result)) { $Name[intVal($Count)] = $row['Name']; $Message[intVal($Count)] = $row['Message']; $Column[intVal($Count)] = $row['Column']; $File[intVal($Count)] = $row['File']; $Count += 1; }//Close the while loop mysql_free_result($result); ?>