| 
<?phprequire_once("x64_feeds.php");
 
 class wrapper extends x64_feeds
 {
 var $get_data=true;
 var $get_data_processed=true;
 
 function wrapper($database='',$path='./')
 {
 $this->x64_feeds($database,$path);
 }
 
 function get_data()
 {
 for ($n=0;$n<15;$n++)
 {
 $data[$n]['title']="Test... #$n";
 $who=((mt_rand(0,1))? "Me" : "You");
 $data[$n]['author']=$who;
 $data[$n]['mail']=strtolower($who)."@mail.com";
 $data[$n]['link']="index.php?id=$n";
 $data[$n]['description']="This is ".((mt_rand(0,1))? "a testing" : "simple").((mt_rand(0,1))? " entry" : " string");
 $data[$n]['category']=((mt_rand(0,1))? "foo" : "bar");
 $data[$n]['published']=date('D, d M Y H:i:s T',time()-(mt_rand(0,3600)));
 $data[$n]['id']=$n;
 }
 return $data;
 }
 }
 
 
 $use_cache= true;
 $cache_expire=20*60;
 $query_type="path";
 $path='example3.php';
 
 $title="x64 Feeds Generator Example #3";
 
 $q=$_SERVER['QUERY_STRING'];
 $format='';
 
 if($query_type=='path')
 {
 $format=substr($q,0,strlen($q)-4);
 }
 else
 {
 if(isset($_GET["format"]))
 $format=$_GET["format"];
 }
 
 if(strstr($format,"."))
 die('ERROR: Invalid Query');
 
 $feeds_g=new wrapper("example3");
 $check=$feeds_g->init($format);
 $feeds_g->set_data($title);
 $feeds_g->setup_generator(10,$path,$query_type,$use_cache,$cache_expire);
 
 if(!$check)
 die('ERROR: Invalid/Unknow Format');
 
 $feeds_g->auto_process();
 
 ?>
 |