I have this code:
$curl = "https://cashupweb.brodos.net/cashup/cashup_demo.php?user=0049000001138295&pass=cashup&prodid=27&curr=EUR&amount=20&msisdn=0613652227&partnerid=1";
$ch = curl_init($curl);
curl_setopt ($ch, CURLOPT_HEADER, 1);
curl_setopt ($ch, CURLOPT_VERBOSE, 1);
curl_setopt ($ch, CURLOPT_NOPROGRESS, 0);
curl_setopt ($ch, CURLOPT_NOBODY, 0);
curl_setopt ($ch, CURLOPT_FOLLOWLOCATION, 1);
curl_setopt($ch,CURLOPT_RETURNTRANSFER,1);
$curl_ret = curl_exec ($ch);
curl_close ($ch);
And I get this back:
- Your connection is using a weak random seed! * Closing live connection (#0)
Can anybody help me?