Podcasts

[insert_php]

$db = mysql_connect (“localhost”, “greencheck_nl”, “102938QPwoei”)
or die (“Could not connect”);

$query = “select * from BE_podcasts where 1=1 ORDER BY id;”;

$result=mysql_db_query(“greencheck_nl”,$query);

echo “

“;

while ($row = mysql_fetch_row ($result)) {
echo “

“;
}

echo “

” . $row[0] . “ ” . $row[1] . “ ” . $row[2] . “ ” . $row[3] . “ ” . $row[4] . “

“;

[/insert_php]