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:
- result = postUrl("http://www.reviewill.com/zoho/ccnow.php", input.Price);
In the ccnow.php:
- if($_SERVER['REQUEST_METHOD'] === 'POST'){
- $req_dump = print_r($_REQUEST, TRUE);
- $fp = fopen('request.log', 'a');
- fwrite($fp, $req_dump);
- 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.