17 lines
519 B
PHP
17 lines
519 B
PHP
<?php
|
|
//-------------------- wiederkehrende abfragen -------------------------------------------------
|
|
//$a_touren = $GLOBALS['a_touren'];
|
|
$a_fahrzg = $GLOBALS['a_fahrzg'];
|
|
$a_fahrer = $GLOBALS['a_fahrer'];
|
|
//$a_planbz = $GLOBALS['a_planbz'];
|
|
//$a_planbf = $GLOBALS['a_planbf'];
|
|
|
|
//echo'<pre>'; print_r($row); echo'</pre>';
|
|
|
|
|
|
$tourx = $GLOBALS['mysql']->query_single("SELECT * FROM tliste WHERE id='".$_POST['id']."'");
|
|
$template->assign('tour', $tourx);
|
|
$template->assign('content', 'tpl/ajax/itour.tpl');
|
|
?>
|
|
|
|
|