daraus ermittelst du die anzahl
PHP-Code:
$sql='SELECT COUNT(status_id) anzahl
FROM tagesstatus
WHERE
tag_stoerstart_zeit >= DATE_SUB(NOW(), INTERVAL '.$zeit.' DAY)
AND
status_id = 2';
$result=mysql_query($sql) or die(mysql_error());
$anzahl=mysql_fetch_assoc($result);
$anzahl=$anzahl['anzahl'];
echo $anzahl;
Einen Kommentar schreiben: