411 for Listners
411 for Podcasters
411 for News Media
For Everyone
|
|
Enter a keyword or choose a category to browse podcasts.
include("dbfunctions.php");
$podid = $_GET["id"];
if(!isset($_GET['Submit'])) {
?>
$link = OpenConnection();
if ($link == FALSE) {
echo "Unable to connect to dbase.";
return;
}
$query = "SELECT podcastid,title,genre,subgenre FROM podcasts WHERE podcastid='$podid'";
$result = mysql_query($query);
$line = mysql_fetch_array($result);
$podcastid = $line["podcastid"];
$title = $line["title"];
$genre = $line["genre"];
$subgenre = $line["subgenre"];
CloseConnection($link);
?>
|
|