Ok I have a function for verifying CC cards on-line
The script is fine except after I get the response I can explode it into an array
Here's the return format
"Yauth bla ","bla blabla ()","bla ()"
here's the code I've been playing with:
exec("$curl -d \"$data\" $authnet_url", $return_string);
$returned = explode(",",$return_string[0]);
//then just for checking
echo $returned[0];
// that echo shows nothing
It worked fine when I used the Authorizenet.com but when I switched to mcc it broke. The only difference is the format of the return.
Any Ideas???