Login   Register  
PHP Classes
elePHPant
Icontem

File: caller.php

Recommend this page to a friend!
Stumble It! Stumble It! Bookmark in del.icio.us Bookmark in del.icio.us
  Classes of Nitesh Apte  >  PHP AJAX RSS News Reader  >  caller.php  >  Download  
File: caller.php
Role: Application script
Content type: text/plain
Description: caller
Class: PHP AJAX RSS News Reader
Convert RSS feeds into HTML links
Author: By
Last change: changed
Date: 2010-01-27 08:44
Size: 203 bytes
 

Contents

Class file image Download
<?php
if(isset($_REQUEST))
{
    include_once(
'classes/class.rssnews.php');
    try {
            
RSSNews::_displayFeeds($_REQUEST['q']);
    }
    catch(
Exception $e) {
            
trigger_error($e->getMessage());
    }
}
?>