Always private
DuckDuckGo never tracks your searches.
Learn More
You can hide this reminder in Search Settings
All regions
Argentina
Australia
Austria
Belgium (fr)
Belgium (nl)
Brazil
Bulgaria
Canada (en)
Canada (fr)
Catalonia
Chile
China
Colombia
Croatia
Czech Republic
Denmark
Estonia
Finland
France
Germany
Greece
Hong Kong
Hungary
Iceland
India (en)
Indonesia (en)
Ireland
Israel (en)
Italy
Japan
Korea
Latvia
Lithuania
Malaysia (en)
Mexico
Netherlands
New Zealand
Norway
Pakistan (en)
Peru
Philippines (en)
Poland
Portugal
Romania
Russia
Saudi Arabia
Singapore
Slovakia
Slovenia
South Africa
Spain (ca)
Spain (es)
Sweden
Switzerland (de)
Switzerland (fr)
Taiwan
Thailand (en)
Turkey
Ukraine
United Kingdom
US (English)
US (Spanish)
Vietnam (en)
Safe search: moderate
Strict
Moderate
Off
Any time
Any time
Past day
Past week
Past month
Past year
  1. stackoverflow.com

    I am trying to take several RSS feeds, and put the content of them into a MySQL Database using PHP. After I store this content, I will display on my own page, and also combine the content into one single RSS Feed. (Probably after filtering) I haven't dealt with RSS Feeds before, so I am wondering the best Framework/Method of doing this is.
  2. codeshack.io

    May 23, 2023That's all we need to implement for this file. The whole concept is to share the document with your users, so they can subscribe to your news feed without visiting your website directly. 4.3. Populate the RSS Feed. In this section, we'll cover the basics of efficiently populating an external RSS news feed with PHP.
  3. There are built in library to do RSS Feeds, but won't it be nice to build our own and be able to customize the output. PHP 5 or later is needed for this method because it uses SimpleXML. ... Integrating/Reading RSS Feed Using PHP . March 6, 2010 By permadi. 0. There are built in library to do RSS Feeds, but won't it be nice to build our own ...
  4. librarywebchic.net

    Incorporating RSS feeds into your website. 2006 April 5. tags: library-websites, RSS. ... The only other way to do it is using server side scripting (PHP, ASP, Coldfusion, etc) to process the RSS feed and reformat. But you need to have knowledge of one of these languages to do this. Trackbacks & Pingbacks.
  5. blog.brandwebdirect.com

    Any thing placed on your web pages in javascript format won't be read by the indexing search engines. That is why they offer our feeds in PHP. PHP is a search engine friendly scripting language. Adding RSS feeds to your web pages with PHP will provide fresh content for the search engines to choose up and rank you for. PHP is server side scripting.
  6. Was this helpful?
  7. forum.textpattern.com

    Anyone know of a way to integrate an rss feed into an article list? It might simply be that an RSS post becomes a post in the db? ... 2004-08-25 Posts: 281 Website. Re: RSS to integrate with normal posts : ie: twitter. ... 2005-01-16 Posts: 402 Website. Re: RSS to integrate with normal posts : ie: twitter ...
  8. michaelhartzell.com

    Use the controls and options below to customize the digest. You can also change the source of the feed by using the Feed Scraper: enter the address of a website, blog or podcast in the text field and hit the... Feedroll - RSS tools, rss viewer, combine feeds — simple to use RSS viewer, and set up your very own RSS feed within minutes. Simple ...
  9. parorrey.com

    Place the "simplepie.inc" into a your "includes" folder under root directory of your website and include it into your calling script Create a directory named "cache" (also in the web-accessible root directory) and make sure that it's writable by the server (i.e., CHMOD to 755, 775, or 777)
  10. Can’t find what you’re looking for?

    Help us improve DuckDuckGo searches with your feedback

  1. Magpie is a reasonable RSS parser for PHP. Easy to use:

    require('rss_fetch.inc');
    $rss = fetch_rss($url);

    An item like this for example:

    <item rdf:about="http://protest.net/NorthEast/calendrome.cgi?span=event&ID=210257">
    <title>Weekly Peace Vigil</title>
    <link>http://protest.net/NorthEast/calendrome.cgi?span=event&ID=210257</link>
    <description>Wear a white ribbon</description>
    <dc:subject>Peace</dc:subject>
    <ev:startdate>2002-06-01T11:00:00</ev:startdate>
    <ev:location>Northampton, MA</ev:location>
    <ev:enddate>2002-06-01T12:00:00</ev:enddate>
    <ev:type>Protest</ev:type>
    </item>

    Would be turned into an array like this:

    array(
        title => 'Weekly Peace Vigil',
        link => 'http://protest.net/NorthEast/calendrome.cgi?span=event&ID=210257',
        description => 'Wear a white ribbon',
        dc => array (
                subject => 'Peace'
            ),
        ev => array (
            startdate => '2002-06-01T11:00:00',
            enddate => '2002-06-01T12:00:00',
            type => 'Protest',
            location => 'Northampton, MA'
        )
    );

    Then you can just pick out the bits you want to save in the DB and away you go!

    --Paul Dixon

    Was this helpful?
Custom date rangeX