Размер файла: 946B
<!-- START ./acp/acp_del_cat.tpl -->
<div class="all">
<div class="title">
<?=$lng_arr['ADMIN_PANEL']?>
</div>
<div class="title">
<?=$lng_arr['ADMIN_CAT_MANAGE']?> / <?=$lng_arr['ADMIN_DEL']?>
</div><br/>
<?php if(!empty($systemMess)) echo $systemMess; ?>
<form action="./acp.php" method="get"><div class="form">
<?php $getCat = $mysqli->query($getCat);
while($getCatRes = $getCat->fetch_assoc()){ ?>
<input type="checkbox" name="delID[]" value="<?=(int)$getCatRes['id']?>"/>
<?=htmlspecialchars($getCatRes['name'])?> [
<?=bParseCount($getCatRes['num_ann'],"CALL")?>
]<br/>
<?php } ?>
* <?=$lng_arr['ADMIN_DEL_CAT_WARN']?><br/>
<input type="submit" value="<?=$lng_arr['ADMIN_DEL']?>"/>
<input type="hidden" name="index" value="del_cat"/>
<input type="hidden" name="<?=session_name()?>" value="<?=session_id()?>"/>
</div></form>
</div>
<!-- END ./acp/acp_del_cat.tpl -->