コード例 #1
0
ファイル: Ajax.php プロジェクト: piotrazsko/accounting
 public function action_dell_admin()
 {
     if (Request::initial()->is_ajax()) {
         $del_id = Arr::get($_POST, 'id', '');
         $ajax = new Model_Stanki();
         $res = $ajax->dell_admin($del_id);
         echo $del_id;
     }
 }