Hi,
my provider doesn't support wget.
They suggest:
wget is not supported on our servers for shared hosting. As an alternative you could use PHP's cURL library. Here is an example of its basic usage for access to a website URL:
<?php
$ch = curl_init("
http://www.example.com/phpinfo.php"
;
$fp = fopen("example_homepage.txt", "w"

;
curl_setopt($ch, CURLOPT_FILE, $fp);
curl_setopt($ch, CURLOPT_HEADER, 0);
curl_exec($ch);
curl_close($ch);
fclose($fp);
?>
What can I do?
Tnx a lot
Danilo