Hi,
I've taken over a number of blogs from a friend, who I believe has or had an account here, and I've noticed the following piece of code on a number of the blogs:
<h2>GM Network News</h2>
-
<?php
$ch = curl_init();
$timeout = 5; // in seconds, you can change this lower if you want
curl_setopt ($ch, CURLOPT_URL, 'http://app.feeddigest.com/digest3/6GQHV61WUA.html');
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt ($ch, CURLOPT_CONNECTTIMEOUT, $timeout);
$file_contents = curl_exec($ch);
curl_close($ch);
echo $file_contents;
?>
This code is pulling in information from other sites that I no longer want to link to. I still want to link to some of the sites (i.e. get their feeds), just not all of them. Is there any way that I can change the account, so that it only takes the feeds from the sites that I want?
Thanks
Suber (my email is witonsky@hotmail.com)