postUrl not working

postUrl not working

I am trying to post some data when the status field in my form is updated.

I am using this code:

  1. result = postUrl("http://www.reviewill.com/zoho/ccnow.php", input.Price);

In the ccnow.php:

  1. if($_SERVER['REQUEST_METHOD'] === 'POST'){
  2. $req_dump = print_r($_REQUEST, TRUE);
  3. $fp = fopen('request.log', 'a');
  4. fwrite($fp, $req_dump);
  5. fclose($fp);
But when i update status field in my form, The post array in the request.log file is empty. I think zoho is not posting anything.