Source for file post.php

Documentation is available at post.php

  1. <?
  2.  
  3. require_once('adodb/adodb.inc.php');
  4. require_once 'JSON.php';
  5.  
  6. $objJsonConverter new Services_JSON();
  7.  
  8. // Pause to demonstrate "Busy" animation
  9. sleep(4);
  10.  
  11. // Form response
  12. $arrResponse array(
  13.   "success" => "Dados Recebidos com Sucesso.",
  14.   "first" => isset($_POST["first"]($_POST["first"]"",
  15.   "last" => isset($_POST["last"]($_POST["last"]"",
  16.   "org" => isset($_POST["org"]($_POST["org"]""
  17. );
  18.  
  19. // Send response
  20. echo $objJsonConverter->encode($arrResponse);
  21.  
  22. ?>

Documentation generated on Sun, 09 Mar 2008 23:52:55 -0300 by phpDocumentor 1.4.0

SourceForge.net Logo Support This Project