Просмотр файла skins/tpl/acp/acp_edit_cat.tpl

Размер файла: 899B
  1. <!-- START ./acp/acp_edit_cat.tpl -->
  2. <div class="all">
  3. <div class="title">
  4. <?=$lng_arr['ADMIN_PANEL']?>
  5. </div>
  6. <div class="title">
  7. <?=$lng_arr['ADMIN_CAT_MANAGE']?> / <?=$lng_arr['ADMIN_EDIT']?>
  8. </div><br/>
  9. <?php if(!empty($systemMess)) echo $systemMess; ?>
  10.  
  11. <form action="./acp.php" method="get"><div class="form">
  12. <?php $getCat = $mysqli->query($getCat);
  13. while($getCatRes = $getCat->fetch_assoc()){ ?>
  14. <input type="radio" name="edit_id" value="<?=(int)$getCatRes['id']?>"/>
  15. <?=htmlspecialchars($getCatRes['name'])?> [
  16. <?=bParseCount($getCatRes['num_ann'],"CALL")?>
  17. ]<br/>
  18. <?php } ?>
  19. <input type="submit" value="<?=$lng_arr['NEXT']?>"/>
  20. <input type="hidden" name="index" value="edit_cat"/>
  21. <input type="hidden" name="<?=session_name()?>" value="<?=session_id()?>"/>
  22. </div></form>
  23. </div>
  24. <!-- END ./acp/acp_edit_cat.tpl -->