GoFuckYourself.com - Adult Webmaster Forum

GoFuckYourself.com - Adult Webmaster Forum (https://gfy.com/index.php)
-   Fucking Around & Business Discussion (https://gfy.com/forumdisplay.php?f=26)
-   -   anyone with PHP5, please help (https://gfy.com/showthread.php?t=415237)

etech 01-11-2005 06:05 PM

anyone with PHP5, please help
 
can i please run this code on your box, its for a school project.
it simple reads a RSS file and parses it.
PHP Code:

<?php
parseRSS
($_GET["url"]);
function 
parseRSS($src) {

    
$feed simplexml_load_file($src);

    
printf ('<h1>
            <a href="%s" title="%s">%s</a>
        </h1>
        <p>%s</p>'
,

        
$feed->channel->link,
        
$feed->channel->title,
        
$feed->channel->title,
        
nl2br($feed->channel->description)
    );

    foreach(
$feed->channel->item as $res) {
        
printf('<h2>
                <a href="%s" title="%s">%s</a>
            </h2>
            <p>%s</p>'
,
    
            
$res->link,
            
$res->title,
            
$res->title,
            
nl2br($res->description)
        );
    }
}
?>



All times are GMT -7. The time now is 03:16 PM.

Powered by vBulletin® Version 3.8.8
Copyright ©2000 - 2025, vBulletin Solutions, Inc.
©2000-, AI Media Network Inc123