-
# view 에서 form으로 넘긴 데이터 가져오기 1. post 로 넘긴 데이터 1) $this->request->getPost("html tag name"); 2) $_POST["html tag name"]; 2. get로 넘긴 데이터 1) $this->request->getGet("html tag name"); 2) $_GET["html tag name"];