topical media & game development 
  
 
 
 
 
  
    
    
  
 lib-jquery-learning-bookstore-news-feed.php / php
  <?php
    // If file_get_contents() is available on the server,
    // this short solution will be sufficient.
    header('Content-Type: text/xml');
    print file_get_contents('http://jquery.com/blog/feed');
  ?>
  
  <?php
    // This alternative solution works if file_get_contents()
    // is not available, but the cURL library is.
    // header('Content-Type: text/xml');
    // 
    // timeout = 5; // set to zero for no timeout
    // curl_setopt(
    // curl_setopt(curl, CURLOPT_RETURNTRANSFER, 1);
    // curl_setopt(timeout);
    // print curl_exec(
    // curl_close(curl);
  ?>
  
  
(C) Æliens 
20/2/2008
You may not copy or print any of this material without explicit permission of the author or the publisher. 
In case of other copyright issues, contact the author.