PHP Quotes TEST

[insert_php]
$handle = curl_init();
curl_setopt ($handle, CURLOPT_SSL_VERIFYPEER, 0); //prevent certificate checking
curl_setopt ($handle, CURLOPT_URL,”https://api.aghost.net/api/futures/index.cfm/”); //API URL
curl_setopt ($handle, CURLOPT_POSTFIELDS, “username=E004440111&password=xpXmwpd5g&service=chart&style=4&colorLabels=1&showGrid=1&oddRowBgColor=%23CCCCCC&noCSS=1&columns=contract,prev,open,high,low,last,change,close,date”); //parameters
curl_setopt ($handle, CURLOPT_RETURNTRANSFER, TRUE); //return the data instead of a “succeeded” message
curl_setopt ($handle, CURLOPT_FRESH_CONNECT, TRUE); //prevent use of cache
$results = curl_exec ($handle); //execute
echo $results;
curl_close($handle);
[/insert_php]