Onbekend |
|
Je hebt een typefout.
[ocde=php] ipv [code=php]
Edit
Nu niet meer zie ik
require("config.php");
if(array_key_exists('ID',$_GET))
{
mysql_connect($host,$username,$password);
mysql_select_db($db);
$query=mysql_query("SELECT * FROM liste WHERE ID=".$_GET['ID'].";");
if(mysql_num_rows($query)==0)
die("Film niet gevonden");
while($row=mysql_fetch_assoc($query))
{
echo("<table>\n");
echo("<tr>\n");
echo("\t<th>".$row['titel']."</th>\n");
echo("</tr>\n");
echo("<tr>\n");
echo("\t<td>".$row['omscrijving']."</td>\n");
echo("</tr>\n");
echo("<tr>\n");
echo("\t<td>".$row['cover']."</td>\n");
echo("</tr>\n");
echo("</table>\n");
}
mysql_close();
}
else
{
header("Content-Type: text/xml;");
echo("<?xml version=\"1.0\" encoding=\"US-ASCII\" ?>\n");
echo("<rss version=\"2.0\" xmlns:atom=\"http://www.w3.org/2005/Atom\"
xmlns:content=\"http://purl.org/rss/1.0/modules/content\"
>\n\n");
echo("<channel>\n");
echo(" <title>".$channeltitle."</title>\n");
echo(" <link>http://".$_SERVER['HTTP_HOST']."/</link>\n");
echo(" <lastBuildDate>".$builddate."</lastBuildDate>\n");
echo(" <atom:link href=\"http://www...../rss.php\" rel=\"self\" type=\"application/rss+xml\" />\n");
mysql_connect($host,$username,$password);
mysql_select_db($db);
$query=mysql_query("SELECT * FROM liste ORDER BY ID DESC LIMIT 0,25");
while($row=mysql_fetch_assoc($query))
{
echo(" <item>\n");
echo(" <title>".$row['titel']."</title>\n");
echo(" <link>http://www..../selectie.php?filmid=".$row['ID']."</link>\n");
echo(" <guid>http://www..../selectie.php?filmid=".$row['ID']."</guid>\n");
echo(" <content:encoded><![CDATA[<table><tr><td><p><img src=\"http://..../1824.jpg\" width =\" 80\" heigh = \"120\"></td><td> </td><td>>".$row['omschrijving']."</</td></tr></table> ]]></content:encoded>\n");
echo(" </item>\n");
}
echo("</channel>\n\n</rss>");
}
?>
require("config.php"); if(array_key_exists('ID',$_GET)) { mysql_connect($host,$username,$password); mysql_select_db($db); $query=mysql_query("SELECT * FROM liste WHERE ID=".$_GET['ID'].";"); if(mysql_num_rows($query)==0) die("Film niet gevonden"); while($row=mysql_fetch_assoc($query)) { echo("<table>\n"); echo("<tr>\n"); echo("\t<th>".$row['titel']."</th>\n"); echo("</tr>\n"); echo("<tr>\n"); echo("\t<td>".$row['omscrijving']."</td>\n"); echo("</tr>\n"); echo("<tr>\n"); echo("\t<td>".$row['cover']."</td>\n"); echo("</tr>\n"); echo("</table>\n"); } mysql_close(); } else { header("Content-Type: text/xml;"); echo("<?xml version=\"1.0\" encoding=\"US-ASCII\" ?>\n"); echo("<rss version=\"2.0\" xmlns:atom=\"http://www.w3.org/2005/Atom\" xmlns:content=\"http://purl.org/rss/1.0/modules/content\" >\n\n"); echo(" <title>".$channeltitle."</title>\n"); echo(" <link>http://".$_SERVER['HTTP_HOST']."/</link>\n"); echo(" <lastBuildDate>".$builddate."</lastBuildDate>\n"); echo(" <atom:link href=\"http://www...../rss.php\" rel=\"self\" type=\"application/rss+xml\" />\n"); $query=mysql_query("SELECT * FROM liste ORDER BY ID DESC LIMIT 0,25"); { echo(" <title>".$row['titel']."</title>\n"); echo(" <link>http://www..../selectie.php?filmid=".$row['ID']."</link>\n"); echo(" <guid>http://www..../selectie.php?filmid=".$row['ID']."</guid>\n"); echo(" <content:encoded><![CDATA[<table><tr><td><p><img src=\"http://..../1824.jpg\" width =\" 80\" heigh = \"120\"></td><td> </td><td>>".$row['omschrijving']."</</td></tr></table> ]]></content:encoded>\n"); } echo("</channel>\n\n</rss>"); } ?>
|