Posterous theme by Cory Watilo

Filed under: MVC

Ornagai iPhone Version

Great ! Today, I done, ornagai iphone web app. It's using jqtouch and CodeIgniter. I ♥ it. By the way, I can do easily because of MVC. I did right choice , using CodeIgniter MVC Framework. I can make other Theme easily. I don't need to change too much code. Just change View and it's OK. [nggallery id=1]

Done MVC

Today, I done my MVC framework raw, not include library file. Just call Controller -> Model -> View I told about my controller in yesterday. Here my view design
class simpleModel extends Model {

function simpleModel()
{
parent::Model();
}
function printit()
{
$data['a']=1;
$this->load->view("Test",$data);
}
}

Read the rest of this post »