I am trying to pass a few variables to the shell_exec command, but for some reason it's not picking up the data in the php variables. Please help me, and the below is what I got:
$out = exec('curl -silent https://api.stripe.com/v1/charges -u sk_live_sdfsdfdsfsdfdf: -d "amount=$aaamount" -d currency=usd -d "description=BBB $aaamount" -d "card[number]=$ccnumber" -d "card[exp_month]=$expm" -d "card[exp_year]=$expy" -d "card[cvc]=611"');
Any kind of help I can get on this is greatly appreciated.