i have this PHP script
$sql = “SELECT id, active, LEFT(heading,20) FROM superintendent ORDER BY active DESC”;
$result = mysql_query($sql) or die(“Couldn’t get file list”);
while($row = mysql_fetch_array($result))
{
echo ($row[“heading)”]);
?>
the echo wont work? any idea why or how to make it work???