This commit is contained in:
steven 2025-08-11 22:23:30 +02:00
commit 72a26edcff
22092 changed files with 2101903 additions and 0 deletions

14
scripts/ajax/i_tour_a.php Normal file
View file

@ -0,0 +1,14 @@
<?php
$tmp0 = $GLOBALS['mysql']->query_single("SELECT * FROM touren WHERE job!=0");
if($tmp0['num_rows']!=0) {
$anzeige=0;
$nochmenge=$tmp0['num_rows'];
$zeitraum=substr($tmp0['job'],4)."/".substr($tmp0['job'], 0,4);
$template->assign('zeitraum', $zeitraum);
$template->assign('nochmenge', $nochmenge);
$template->assign('aktuell',$tmp0['tour']);
} else {
$template->assign('fehler', 1);
}
$template->assign('content', 'tpl/ajax/i_tour_a.tpl');
?>