| 
<?
include("gFeed.php");
 /*
 *    Opening a local RSS for write a new one
 */
 $f = fopen("rss://newRSS.xml","a");
 $title = "Test  Entry N 3";
 $link = "http://cesars.users.phpclasses.org/gfeed?test";
 $author = "Cesar D. Rodas";
 $date = '2007-07-24 14:17:00';
 $description = "Test description";
 fwrite($f,1);
 fclose($f);
 
 ?>
 |