Currently, I am using my own MVC framework. What I'm trying to do is make an Ajax call with jQuery(got that part down), and call on a method from the controller so that I can pass the get variables to it and get the output I want returned from the Ajax call.
I can't refresh the page because it is a page full of forms and I don't want each to be reset on a refresh. I also can't pass it to a "handle.php" where I could have the function I need, because what would be the point of the Model and Controller?
What can I do? Or rather, more importantly, what is the best way to approach such a thing? Can I load the classes I need again (would need about 6 because of the extends I use) and instantiate a new object which calls the appropriate method?
I guess it is my own fault for trying to build my own MVC framework instead of learning something like Zend, but whats done is done. Any help would be appreciated, just need to be pointed in the right direction.