Controller
* View와 Model을 제어하는 역할을 함. * URL: localhost/index.php/welcome/input/test_name 참고 index.php : 반드시 존재해야 하나 .htpaccess 파일로 제거할 수 있음. welcome : welcome.php 파일. input : welcome.php 파일에 input함수라고 하여 또 다른페이지를 불러 올 수 있음.(함수 또는 method 라 함.) test_name : welcome.php 파일에 input 함수의 인자 - controller/welcome.php(echo 문은 설명을 위해 넣은 것이고, views에 포함되어야 하는 것이 맞음)class Welcome extends CI_Controller { public function i..
2015.09.04