[advanced search]
Results from the most recent live auction are here.
19 members in the live chat room. Join Chat!
Register Rules & FAQ NP$ Store Active Threads Mark Forums Read
Go Back   NamePros.Com > Design and Development > Webmaster Tutorials
User Name
Password

Old 10-26-2007, 11:42 AM   · #1
cassius
NamePros Member
 
Trader Rating: (0)
Join Date: Feb 2006
Posts: 162
NP$: 87.00 (Donate)
cassius is an unknown quantity at this point
Nice tutorial on content syndication through php/js

I don't know if we are allowed to link to tutorials on other sites (if not, please remove and sorry for the infraction); but here is a nice tutorial on how to syndicate content so that other webmasters can easily incorporate your content into their page.

I have this implemented on my site. If you want to have a look (tiny-ized for masking purposes).

You will have to click on the I agree button and play around with the drop-downs to see the code that gets generated.


Please register or log-in into NamePros to hide ads

Last edited by -Nick- : 10-26-2007 at 11:49 AM.
cassius is offline   Reply With Quote
Old 10-26-2007, 11:50 AM   · #2
-Nick-
I'll do it
 
-Nick-'s Avatar
 
Name: Keral. Patel.
Location: India
Trader Rating: (97)
Join Date: Dec 2005
Posts: 5,405
NP$: 9183.05 (Donate)
-Nick- has a reputation beyond repute-Nick- has a reputation beyond repute-Nick- has a reputation beyond repute-Nick- has a reputation beyond repute-Nick- has a reputation beyond repute-Nick- has a reputation beyond repute-Nick- has a reputation beyond repute-Nick- has a reputation beyond repute-Nick- has a reputation beyond repute-Nick- has a reputation beyond repute-Nick- has a reputation beyond repute
Member of the Month
September 2007 Adoption
I like it friend. I also appreciate the effort from your side to share your thoughts.

It is just that we have to follow the rules.

If that content isn't under some copyright or if you can write it on your own some experiences of yours then we all would be glad to take advantage of it.

Thanks.
-Nick- is offline   Reply With Quote
Old 10-26-2007, 12:24 PM   · #3
cassius
NamePros Member
 
Trader Rating: (0)
Join Date: Feb 2006
Posts: 162
NP$: 87.00 (Donate)
cassius is an unknown quantity at this point
OK and sorry for the infraction. You might as well nuke the thread because any tutorial I would write up would either be too general to be useful or would include the specific php files detailed on that page which would infringe on his copyright.
cassius is offline   Reply With Quote
Old 10-26-2007, 10:44 PM   · #4
-Nick-
I'll do it
 
-Nick-'s Avatar
 
Name: Keral. Patel.
Location: India
Trader Rating: (97)
Join Date: Dec 2005
Posts: 5,405
NP$: 9183.05 (Donate)
-Nick- has a reputation beyond repute-Nick- has a reputation beyond repute-Nick- has a reputation beyond repute-Nick- has a reputation beyond repute-Nick- has a reputation beyond repute-Nick- has a reputation beyond repute-Nick- has a reputation beyond repute-Nick- has a reputation beyond repute-Nick- has a reputation beyond repute-Nick- has a reputation beyond repute-Nick- has a reputation beyond repute
Member of the Month
September 2007 Adoption
Humm.... after locking it I gave it another thought. I thought why not write it myself

So here is code to fetch the RSS and parse it into HTML with help of PHP. Sorry there is no Java in between. Had posted it before in Programming and Code section.

PHP Code:
<?php
set_time_limit
(0);
//Enter the URL of RSS feed in the line below
$file = "http://theurlofrsshere";
$rss_channel = array();
$currently_writing = "";
$main = "";
$item_counter = 0;
function
startElement($parser, $name, $attrs) {
       global
$rss_channel, $currently_writing, $main;
       switch(
$name) {
           case
"RSS":
           case
"RDF:RDF":
           case
"ITEMS":
               
$currently_writing = "";
               break;
           case
"CHANNEL":
               
$main = "CHANNEL";
               break;
           case
"IMAGE":
               
$main = "IMAGE";
               
$rss_channel["IMAGE"] = array();
               break;
           case
"ITEM":
               
$main = "ITEMS";
               break;
           default:
               
$currently_writing = $name;
               break;
       }
}
function
endElement($parser, $name) {
       global
$rss_channel, $currently_writing, $item_counter;
       
$currently_writing = "";
       if (
$name == "ITEM") {
           
$item_counter++;
       }
}

function
characterData($parser, $data) {
    global
$rss_channel, $currently_writing, $main, $item_counter;
    if (
$currently_writing != "") {
        switch(
$main) {
            case
"CHANNEL":
                if (isset(
$rss_channel[$currently_writing])) {
                    
$rss_channel[$currently_writing] .= $data;
                } else {
                    
$rss_channel[$currently_writing] = $data;
                }
                break;
            case
"IMAGE":
                if (isset(
$rss_channel[$main][$currently_writing])) {
                    
$rss_channel[$main][$currently_writing] .= $data;
                } else {
                    
$rss_channel[$main][$currently_writing] = $data;
                }
                break;
            case
"ITEMS":
                if (isset(
$rss_channel[$main][$item_counter][$currently_writing])) {
                    
$rss_channel[$main][$item_counter][$currently_writing] .= $data;
                } else {
                    
$rss_channel[$main][$item_counter][$currently_writing] = $data;
                }
                break;
        }
    }
}

$xml_parser = xml_parser_create();
xml_set_element_handler($xml_parser, "startElement", "endElement");
xml_set_character_data_handler($xml_parser, "characterData");
if (!(
$fp = fopen($file, "r"))) {
    die(
"could not open XML input");
}

while (
$data = fread($fp, 4096)) {
    if (!
xml_parse($xml_parser, $data, feof($fp))) {
        die(
sprintf("XML error: %s at line %d",
                    
xml_error_string(xml_get_error_code($xml_parser)),    
                    
xml_get_current_line_number($xml_parser)));
    }
}
xml_parser_free($xml_parser);

// output HTML

if (isset($rss_channel["ITEMS"]))
{
echo
"<font face='Verdana' size='2' color='#333333'>";
if (
count($rss_channel["ITEMS"]) > 0)
{
for(
$i = 0;$i < count($rss_channel["ITEMS"]);$i++)
{
if (isset(
$rss_channel["ITEMS"][$i]["LINK"]))
{
echo
"<a href=\"" . $rss_channel["ITEMS"][$i]["LINK"] . "\">" . $rss_channel["ITEMS"][$i]["TITLE"] . "</a><br>";
}
else
{
echo
$rss_channel["ITEMS"][$i]["TITLE"];
}
echo
$rss_channel["ITEMS"][$i]["DESCRIPTION"] . "<p>&nbsp;</p>";
}
}
else
{
echo
"<b>There are no articles in this feed.</b>";
}
echo
"</font>";
}
?>
-Nick- is offline   Reply With Quote
Closed Thread

NamePros is a revenue sharing forum.

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Forum Jump


Site Sponsors
NameChatter EscrowDNS EscrowDNS
Advertise your business at NamePros
All times are GMT -7. The time now is 10:41 AM.


Powered by: vBulletin Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 2.4.0