11 lines
No EOL
476 B
PHP
11 lines
No EOL
476 B
PHP
<?php
|
|
$tempsms = $GLOBALS['mysql']->query("SELECT * FROM tourenliste WHERE tag='".$_POST['tag']."' and monat='".$_POST['monat']."' and jahr='".$_POST['jahr']."' ORDER BY tour"); $key=0;
|
|
while($row = $tempsms->fetch_assoc()) {
|
|
$backdata[$key]['tour'] = $row['tour'];
|
|
$backdata[$key]['smsstatus'] = $row['smsstatus'];
|
|
$key++;
|
|
}
|
|
$template->assign('data', $backdata);
|
|
|
|
//-----------------------------------------------
|
|
$template->assign('content', 'tpl/ajax/smscheck.tpl'); |