Hey leute, hab ein große Problem mit einer While schleife. Diese ist eine Endlosschleife und ich weiß nicht wie ich das jetzt verhindern soll. hab jetzt schon 2 Stunden rumprobiert.
Vielleicht könnt ihr mir ja helfen.
Wäre für hilfe dankbar
Und Frohe Ostern noch
Vielleicht könnt ihr mir ja helfen.
PHP:
$qrystr = $start.','.$max;
$qry = "SELECT * FROM ".PRE."module WHERE roots = 1 limit {$qrystr}";
while($row = mysql_fetch_array(mysql_query($qry))) {
$data = array();
$data['icon'] = '<img src="../images/module/'.$row['icon'].'.png" alt="Icon" />';
$data['dir'] = $row['dir'];
$data['name'] = $row['name'];
$temp->assign('mod', $data);
$temp->display('roots.tpl');
}
Wäre für hilfe dankbar
Und Frohe Ostern noch