Your Ad Here

Posted By

Scriptshit on 05/04/10


Tagged

ajax js php textmate call bool


Versions (?)

Who likes this?

1 person have marked this snippet as a favorite

omardixon


ajax call or no ajax call


 / Published in: PHP
 

  1. /**
  2.  * Returns true if the request comes from an ajax call
  3.  *
  4.  * @return bool
  5.  * @author Robert Agthe
  6.  */
  7. function is_ajax()
  8. {
  9. return (isset($_SERVER['HTTP_X_REQUESTED_WITH']) && $_SERVER['HTTP_X_REQUESTED_WITH'] == 'XMLHttpRequest')?true:false;
  10. }
  11.  

Report this snippet  

You need to login to post a comment.