Das Thema nochmal kurz von mir aufgefrischt:
Code:
$result = mysql_query('SELECT id,title FROM ' . $table_prefix . 'index WHERE id="'.$mode['mode'].'"');
while ($row = mysql_fetch_array($result, MYSQL_ASSOC))
{
echo('<div class="headline">' . $row['title'] . "</div>\n");
echo($row['content']);
}
Jetzt hab ich das Problem, dass die while-Schleife niemals ausgeführt wird. Weiß grad jemand wieso? $result ist immerhin gesetzt, und hat
imho auch den entsprechenden Inhalt... aber $row hat keinen Inhalt. Was muss ich anders machen?