require_once('../../lib/xmlajaxresponse.class.php');
require_once('../../lib/request.class.php');
$response = &new XMLAjaxResponse();
$request = &new HttpRequest();
$event = $request->getParameter('event');
if ($event && function_exists($event)) {
$event($request, $response);
}
function submitForm1(&$request, &$response) {
$response->addForm('form2', $request->getParameters());
}
function submitForm2(&$request, &$response) {
$response->addForm('form1', $request->getParameters());
}
$response->doResponse();
?>
Thank you for reading this article formprocessing - controller.php - AJAX Search Code With URL https://x-tutorials.blogspot.com/2008/02/formprocessing-controllerphp-ajax.html. Also a time to read the other articles.
0 comments:
Write your comment for this article formprocessing - controller.php - AJAX Search Code above!