<?PHP
$cs24 = curl_init("http://my.contentserver24.de/content.php?key=3af64ab83544ae80f36dbce28e402589&cs_mid=3&cs_price_trend_chart=DIESEL_BRD_MARKET_DATA&cs_price_trend_style=");
curl_setopt($cs24, CURLOPT_CONNECTTIMEOUT, 3);
curl_setopt($cs24, CURLOPT_SSL_VERIFYPEER, false);//mit SSL 
curl_setopt($cs24, CURLOPT_SSL_VERIFYHOST, false); 
if(curl_exec($cs24) === false)
	echo "";
curl_close($cs24);
?>