Whats the best way to call a certain method in a PHP file with Ajax.Request (using prototype)? I am submiting a form with Form.serialize, so I thought of adding a parameter (like the name of the method to call) and then check it on the server script. Something like:
var params=Form.serialize("someform")+"&=method='check_data'";
new Ajax.Request('somescript.php',{method:'post',parameters:params,onSuccess:
function(response)
{
.. do something with the response
Ve somescript.php in:
if($_POST["method"] == "check_data")
{
check_data();
...
}
Bu işe, ama emin Im (MVC ala) uzak bir yöntemi çağırmak için daha iyi ya da basit bir şekilde gidecekseniz. Herhangi bir fikir?