{"error":"invalid_order"}
And this is the javascript code thats calling json:
$.post("<?php echo str_ireplace("http://", "https://", URL_P);?>c/gateway",
{
unique_id:$("#order_id").val(),
name_card:$("#name_card").val(),
card_num:$("#card_num").val(),
ex_date:$("#ex_date").val(),
cvv:$("#cvv").val()
},
function(data) {
if (data && data != null && data["success"] != null && data["orderid"]) {
processSuccess(data["orderid"]);
} else if (data && data != null && data["error"] != null) {
processError(data["error"]);
} else {
processError('unknown');
}
processing = false;
},
"json"
);
Does anyone see an error in the $post? Is the json $post formed correctly?
Thanks.

New Topic/Question
Reply



MultiQuote


|