ACC SHELL

Path : /srv/www/vhosts/unitedsolution/admin/tiskopisy/
File Upload :
Current File : /srv/www/vhosts/unitedsolution/admin/tiskopisy/addCategory.php

<?php
/* 
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */

//pridani formulare pro novou kategorii

echo '<h2>Přidat novou kategorii</h2>';

//begin formular pro novou kategorii
echo	'<form name="form" id="category_form" method="post" action="default.php?page=tiskopisy/tiskopisy">'."\n".
            '<table>'."\n".
                '<tr><td><label>Název kategorie: </label></td><td><input id="menu_name" type="text" name="nameCategory" value="'.$_POST['nameCategory'].'"/></td></tr>'."\n".
                '<tr><td><label for="viditelnost">Viditelnost:</label></td><td><input type="checkbox" name="viditelnostCategory" value="true" '.($_POST['viditelnost']?'checked':'').' /></td></tr>'.
                '<input type="hidden" name="buttonCategory" value="ulozitCategory" />';
echo            '<tr><td></td><td><input id="link_button" type="image" title="Uložit" src="img/Save.jpg" /></td></tr>'.
        '</table>';
echo  '</form>';
//end formulare pro novou kategorii



?>

ACC SHELL 2018