Hey guys, I am using the following code to display data from my database however when the code has run it leaves space for the data but the data isn't actually displayed. Any suggestions? Thanks.
$sql = "SELECT * FROM acc";
$query = mysql_query($sql);
while ( $row = mysql_fetch_array($query))
{
$data = $row['data'];
echo $data." <br><br>";
}