[ PHPXref.com ] [ Generated: Sun Jul 20 19:19:21 2008 ] [ Parasite 1.0.2 ]
[ Index ]     [ Variables ]     [ Functions ]     [ Classes ]     [ Constants ]     [ Statistics ]

title

Body

[close]

/ -> pingback.php (source)

   1  <?
   2  
   3  $pingbackversion="1.0";
   4  include("i.php");
   5  include ("functions.php");
   6  
   7  $xmlrpc_methods['pingback.ping'] = 'pingback_ping';
   8  $xmlrpc_methods['method_not_found'] = 'XMLRPC_method_not_found';
   9  $xmlrpc_request = XMLRPC_parse($HTTP_RAW_POST_DATA);
  10  $methodName = XMLRPC_getMethodName($xmlrpc_request);
  11  $params = XMLRPC_getParams($xmlrpc_request);
  12  if(!isset($xmlrpc_methods[$methodName])){
  13      $xmlrpc_methods['method_not_found']($methodName);
  14  }else{
  15      //call the method
  16      $xmlrpc_methods[$methodName]($params);
  17  }
  18  
  19  ?>


[ Powered by PHPXref - Served by Debian GNU/Linux ]