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"];
?>
$link = OpenConnection();
if ($link == FALSE) {
echo "Unable to connect to dbase.";
return;
}
$query = "SELECT * FROM podcasts WHERE podcastid='$podid'";
$result = mysql_query($query);
$line = mysql_fetch_array($result);
$podcastid = $line["podcastid"];
$title = $line["title"];
$homepage = $line["homepage"];
$rss = $line["rss"];
$mp3url = $line["mp3url"];
$language = $line["language"];
$genre = $line["genre"];
$subgenre = $line["subgenre"];
$description = $line["description"];
$username = $line["yourname"];
CloseConnection($link);
?>
|
|