Hi
Im getting into a php mvc framework, available here (http://www.phpro.org/tutorials/Model-View-Controller-MVC.html#8), but they only explain their code, and dont offer much other advice on the basics of working inside a framework...
how would i go about posting a form?
working outside of any framework i usually just post the form to the same page, and include an
if(isset($_POST['save']))
{
//do something with post data
}
how soes it work when you've got an htaccess file manipulating your urls and you're inside a framework?
thanks