예제 #1
0
파일: Add_listPage.php 프로젝트: tgdn/cs139
 protected function post()
 {
     global $user, $routes;
     $name = $_POST['name'];
     if (isset($name) && !empty($name)) {
         ListModel::add($user->pk, $_POST['name']);
         header('Location: ' . $routes['lists']);
     }
     // otherwise show form
 }