Beispiel #1
0
            break;
    }
    header("Location: dz_9.php");
    exit;
}
// Удаление объявления
if (isset($_GET['delete'])) {
    $del_id = (int) $_GET['delete'];
    delAd($del_id);
    header("Location: dz_9.php");
    exit;
}
// Вывод объявления
if (isset($_GET['show'])) {
    $edit_id = (int) $_GET['show'];
    $editAd = showAd($edit_id);
    $smarty->assign('editAd', $editAd);
}
$smarty->assign('location_sel', 641780);
// Выбранный город по умолчанию
$smarty->assign('location_id', location_id());
$smarty->assign('category_id', category_id());
$smarty->assign('label_id', label_id());
$smarty->assign('radio_id', array(0 => 'Частное лицо', 1 => 'Компания'));
// Показ списка объявлений
$ads_db = showAll();
//date_default_timezone_set('Europe/Moscow');
if (isset($ads_db)) {
    $smarty->assign('showAd', $ads_db);
}
$smarty->display('index.tpl');
Beispiel #2
0
            break;
    }
    header("Location: dz_9.php");
    exit;
}
// Удаление объявления
if (isset($_GET['delete'])) {
    $del_id = (int) $_GET['delete'];
    delAd($link, $del_id);
    header("Location: dz_9.php");
    exit;
}
// Вывод объявления
if (isset($_GET['show'])) {
    $edit_id = (int) $_GET['show'];
    $editAd = showAd($link, $edit_id);
    $smarty->assign('editAd', $editAd);
}
$smarty->assign('location_sel', 641780);
// Выбранный город по умолчанию
$smarty->assign('location_id', location_id($link));
$smarty->assign('category_id', category_id($link));
$smarty->assign('label_id', label_id($link));
$smarty->assign('radio_id', array(0 => 'Частное лицо', 1 => 'Компания'));
// Показ списка объявлений
$ads_db = showAll($link);
//date_default_timezone_set('Europe/Moscow');
if (isset($ads_db)) {
    $smarty->assign('showAd', $ads_db);
}
$smarty->display('index.tpl');