<?php include "../../root.class.php";
$html = new html();
$html->add_styles_page();

?>

<div class="form_down">
    <h1>ADD MENU</h1>
    <?php echo $html->input_html("name", "", "name", "name"); 
    echo $html->select_html_from_db('restorants','record_id','name',"company_id = {$_SESSION['company_id']}","restorant_id","restorant_id");

    echo $html->submit_btn("submit", 'SAVE', 'add_menu()');?>

</div>

<?php
$html->html_form_ajax("add_menu",  "INSERT", "menu", '', false);
?>