QUOTE(ssfdre38 @ Jun 15 2011, 03:39 PM)

first all remote connections are disable and second cURL isnt even installed on Zymic so you can not even use it
so if i wanted to reach a website that returns price values from ingame, that would not be possible? (using xmlhttpresponse)
just to give you an idea what the script, that uses curl, wanted to do:
CODE
global $MySelf;
// Handle not-logged in shizms.
if (!is_object($MySelf)) {
return (false);
}
// URL
$url = "http://api.eve-online.com/account/Characters.xml.aspx";
// Post Data
$auth = array (
'userID' => $this->api_id,
'apiKey' => $this->api_key
);
// Set up CURL
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_HEADER, false);
curl_setopt($ch, CURLOPT_POST, 1);
// curl_setopt($ch, CURLOPT_FILE, $fp);
curl_setopt($ch, CURLOPT_POSTFIELDS, http_build_query($auth));
$result = curl_exec($ch);
curl_close($ch);
// only parse XML when we got something
if (!empty($result)) {
//Initializes the XML Parser
$xml = new SimpleXMLElement($result);
/*
* Multiple character shizms
* We have to loop through all character names until
* we find the one that matches the username.
*/
foreach ($xml->result->rowset->row as $row) {
if (strtolower($row[name]) == strtolower($MySelf->getUsername())) {
//fwrite($log, "Trying: $row[name] for " . $MySelf->getUsername());
$api_char = strtolower(sanitize($row[name]));
$api_id = $row[characterID];
$found = true;
}
}