News
prepare($query);
$query->bind_result($newsID, $title, $text, $category, $changeDate, $active);
$query->execute();
$count = 1;
$htmlRows = "";
while($query->fetch() AND $count <= 30000 ){
$changeDate = date('j.n.Y', strtotime($changeDate));
$htmlRows.= '
';
$htmlRows.= (strlen($title) == 0) ? "" : sprintf("
%s %s", $title, $changeDate);
$htmlRows.= $text;
$htmlRows.= '
';
$htmlRows.='
';
$count++;
}
$query->close();
echo $htmlRows;
?>