jb-data.de/scripts/ajax/huau.php
2025-08-11 22:23:30 +02:00

28 lines
No EOL
768 B
PHP

<?php
error_reporting(E_ALL); ini_set('display_errors',0);
//-------------- hu
$key=0;
$tempcar1 = $GLOBALS['mysql']->query("SELECT * FROM fahrzeuge WHERE aktiv>0 and besitz<3 and hudate>1 ORDER BY kz");
while($row = $tempcar1->fetch_assoc()) {
$temptime=time(); $temptime=$temptime+2678400;
if($row['hudate']<=time()) {
$anzeige=1;
$hudata[$key]['typ']=1;
$hudata[$key]['kz']=$row['kz'];
$hudata[$key]['hudate']=$row['hudate'];
$key++;
}
elseif($row['hudate']<=$temptime) {
$anzeige=1;
$hudata[$key]['typ']=2;
$hudata[$key]['kz']=$row['kz'];
$hudata[$key]['hudate']=$row['hudate'];
$key++;
}
}
$template->assign('anzeige', $anzeige);
$template->assign('hudata', $hudata);
$template->assign('content', 'tpl/ajax/huau.tpl');
?>