problem ist ja.. es sagt mir nichts
http://the-bunny.de/page.php?id=6
inhalt:
http://the-bunny.de/page.php?id=6
inhalt:
PHP-Code:
<?
include("mysql.inc.php");
$id = $_GET["id"];
$sql = "SELECT titel, text FROM pages WHERE id=$id";
$resID=mysql_query ($sql,$linkID);
if (!$resID) echo "Select konnte nicht ausgeführt werden!".mysql_error();
$zeile=mysql_fetch_array($resID,MYSQL_BOTH);
?>
<html>
<head>
<title><? $zeile[titel]; ?></title>
</head>
<body>
<? $zeile[text]; ?>
</body>
</html>
Kommentar