hej!
hvad er der galt her?:
<html>
<head>
<title>Main - ds.borglind.dk</title>
<link href="style.css" rel="stylesheet" type="text/css">
</head>
<body>
<strong>ds.borglind.dk</strong><br>NDS homebrew apps<br><br>
<?
include('mysql.php');
?>
<?
$query = mysql_query("SELECT id,title ds_main ORDER BY id DESC") or die(mysql_error());
while ($row = mysql_fetch_assoc($query)) {
echo '<font size="2"><b><a link href="display.php?id='.$row['id'].'">'.$row['title'].'</a></b> ';
echo '<br>';
echo '<br>';
}
?>
<a href="admin" target="_blank">Administration</a>
</body>
</html>
den siger bare:
ds.borglind.dk
NDS homebrew apps
You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'ORDER BY id DESC' at line 1
kan simpelthen bare ikke se hvad der er galt!?
Andy