Hallo,
habe ein kleines Problem.
Diesen Error bekomme ich immer:
wenn ich ein : echo mysql_error(); hinzufüge ,kommt das als Resultat
"Unknown column 'ID' in 'order clause'"
Das ist die php-Datei:
[cs]
<?php $mysqlip = "localhost"; $mysqlId = "root"; $mysqlpw = "pw"; $newsDb = "db"; $myConn = mysql_connect($mysqlip, $mysqlId, $mysqlpw); $selectdb = mysql_select_db($newsDb, $myConn); print "<div class='news-container'>"; $query = mysql_query("select * from sro_news order by ID desc limit 0,5"); echo mysql_error(); while ($row = sql_fetch_array($query)) { print "<div class='news-title'><img style='width:16px;height:16px;' src='styles/img/title-shield.png' alt='Title' > "; print $row['title']." "; print " [Posted by <b>".$row['author']."</b> at <b>".$row['date']."</b>]."; print "</div>"; print "<div class='news-content'>"; print $row['content']; print "</div><br />"; print "<div class='post-divide-line'></div>"; print "<br />"; } print "</div>";?>[/cs]
thx