I have a simple question, I am currently handling php / ajax requests in the current way.
// ajax_requests.php
<?php
if(isset($_POST['ajaxvar'] == 'send')){
// send timestamp
}
if(isset($_POST['ajaxvar'] == 'get')){
// return get
}
?>
Is there a better way of coping with these requests? Other than this somewhat bloated way of handling with requests.
jQuerycode? What have you tried? – thecodeparadox Jul 18 '12 at 16:05call_user_func()– Jan Prieser Jul 18 '12 at 16:06$_POST['ajaxvar']is set and then use aswitchconstruct – madfriend Jul 18 '12 at 16:12