channel->item as $item) { $link = (string)$item->link; // Encode the URL for use as a GET parameter $encodedLink = urlencode($link); // Build the target URL $targetUrl = "singlefetch.php?url=$encodedLink"; // Fetch the result from the target URL $result = file_get_contents($targetUrl); // Print the result echo $result . "
"; } ?>