PHP expert |
|
<?php
$file = 'http://www.discogs.com/label/Svek?f=xml&api_key=x';
$curl = curl_init();
curl_setopt($curl, CURLOPT_URL, $file);
curl_setopt($curl, CURLOPT_ENCODING, 'gzip,deflate');
curl_setopt($curl, CURLOPT_HEADER, 0);
$output = curl_exec($curl);
<?php $file = 'http://www.discogs.com/label/Svek?f=xml&api_key=x'; $curl = curl_init(); curl_setopt($curl, CURLOPT_URL, $file); curl_setopt($curl, CURLOPT_ENCODING, 'gzip,deflate'); curl_setopt($curl, CURLOPT_HEADER, 0); $output = curl_exec($curl);
Werkt hier |