$count = 0;
$result = mysql_query("select title,Date,link,description,writer from Podcast order by pid desc");
while($row = mysql_fetch_array($result))
{
$title = $row['title'];
$date = $row['Date'];
$link = $row['link'];
$desc = $row['description'];
$by = $row['writer'];
$formatdate = date("D M d, Y g:i a", strtotime($date));
?>
if($count == 0)
{
?>
}
else
{
?>
}
?>
$count = $count + 1;
}
?>
include("footer.php") ?>