[PHP] RSS Standardness

2012-04-03 Thread shiplu
Dealing RSS Version. I am going to write an RSS parser. Its a very simple parser which just grabs the latest items date and title. SimpleXML and DomDocument is my friend here. The problem here is there are too many standards for RSS. RSS 2.0, 0.92 and 0.91. What do you think which version should I

Re: [PHP] RSS Feed

2011-11-15 Thread Tamara Temple
On Tue, 15 Nov 2011 20:30:29 +, Christopher Lee sent: Hello All, I am interested in importing RSS Feed content into a MySQL database and displaying the aggregated content on a website. I am thinking of developing the website within a CMS type framework (i.e. Drupal). If anyone can

RE: [PHP] RSS Feed

2011-11-15 Thread Christopher Lee
Message- From: Matijn Woudt [mailto:tijn...@gmail.com] Sent: Tuesday, November 15, 2011 4:38 PM To: Christopher Lee Cc: php-general@lists.php.net Subject: Re: [PHP] RSS Feed Hi, Have you tried google? I tried and top hit was this one: http://stackoverflow.com/questions/1501394/writing-an-rss

Re: [PHP] RSS Feed

2011-11-15 Thread Matijn Woudt
Hi, Have you tried google? I tried and top hit was this one: http://stackoverflow.com/questions/1501394/writing-an-rss-feed-to-mysql-using-php I guess that's all you need. Matijn On Tue, Nov 15, 2011 at 9:30 PM, Christopher Lee wrote: > Hello All, > > I am interested in importing RSS Feed cont

[PHP] RSS Feed

2011-11-15 Thread Christopher Lee
Hello All, I am interested in importing RSS Feed content into a MySQL database and displaying the aggregated content on a website. I am thinking of developing the website within a CMS type framework (i.e. Drupal). If anyone can refer me to any resources in this area then that would be great. I

Re: [PHP] RSS Feed Accented Characters

2011-09-30 Thread Ron Piggott
www.TheVerseOfTheDay.info -Original Message- From: Richard Quadling Sent: Friday, September 30, 2011 2:53 PM To: Ron Piggott Cc: php-general@lists.php.net Subject: Re: [PHP] RSS Feed Accented Characters On 30 September 2011 18:22, Ron Piggott wrote: -Original Message

Re: [PHP] RSS Feed Accented Characters

2011-09-30 Thread Richard Quadling
On 30 September 2011 18:22, Ron Piggott wrote: > > -Original Message- From: Richard Quadling > Sent: Friday, September 30, 2011 12:31 PM > To: Ron Piggott > Cc: php-general@lists.php.net > Subject: Re: [PHP] RSS Feed Accented Characters > > On 30 September 2011 1

Re: [PHP] RSS Feed Accented Characters

2011-09-30 Thread Ron Piggott
-Original Message- From: Richard Quadling Sent: Friday, September 30, 2011 12:31 PM To: Ron Piggott Cc: php-general@lists.php.net Subject: Re: [PHP] RSS Feed Accented Characters On 30 September 2011 17:26, Ron Piggott wrote: I am trying to set up an RSS Feed in the Spanish language

RE: [PHP] RSS Feed Accented Characters

2011-09-30 Thread Jen Rasmussen
Whoops! Forgive my try at it :) -Original Message- From: Richard Quadling [mailto:rquadl...@gmail.com] Sent: Friday, September 30, 2011 11:47 AM To: j...@cetaceasound.com Cc: Ron Piggott; php-general@lists.php.net Subject: Re: [PHP] RSS Feed Accented Characters On 30 September 2011 17

Re: [PHP] RSS Feed Accented Characters

2011-09-30 Thread Richard Quadling
On 30 September 2011 17:41, Jen Rasmussen wrote: > Would this work? > > $content = "El Versículo del Día"; > $rss_content .= "" . $content . "\r\n"; > > Cheers! > Jen The entities are HTML entities. They are not XML entities. If they are displayed as ? then it is an encoding issue. What encodin

RE: [PHP] RSS Feed Accented Characters

2011-09-30 Thread Jen Rasmussen
Would this work? $content = "El Versículo del Día"; $rss_content .= "" . $content . "\r\n"; Cheers! Jen -Original Message- From: Ron Piggott [mailto:ron@actsministries.org] Sent: Friday, September 30, 2011 11:26 AM To: php-general@lists.php.net Su

Re: [PHP] RSS Feed Accented Characters

2011-09-30 Thread Richard Quadling
On 30 September 2011 17:26, Ron Piggott wrote: > > I am trying to set up an RSS Feed in the Spanish language using a PHP cron > job.  I am unsure of how to deal with accented letters. > > An example: > > This syntax: > > > $rss_content .= "" . htmlentities("El Versículo del Día") . > "\r\n"; >

[PHP] RSS Feed Accented Characters

2011-09-30 Thread Ron Piggott
I am trying to set up an RSS Feed in the Spanish language using a PHP cron job. I am unsure of how to deal with accented letters. An example: This syntax: " . htmlentities("El Versículo del Día") . "\r\n"; ?> Outputs: El Versículo del Día When I use an RSS Feed validator I receive the

Re: [PHP] RSS feeder in PHP5?

2009-01-12 Thread Richard Heyes
> Unfortunately, the RSS camps are still at war over syntax and required > elements, and there are 9 mutually-incompatible often-used versions of the > RSS standard over the years, with TWO current 2.0 "standards" > > You have to try to hit the lowest common denominator and test in many RSS > cl

Re: [PHP] RSS feeder in PHP5?

2009-01-12 Thread Eric Butera
On Mon, Jan 12, 2009 at 11:02 AM, wrote: > >> You actually mean application/xml not text/xml > > That depends on if you want the Userland RSS standard or the Other [blanking > on name] RSS standard. > > Unfortunately, the RSS camps are still at war over syntax and required > elements, and there

Re: [PHP] RSS feeder in PHP5?

2009-01-12 Thread ceo
> You actually mean application/xml not text/xml That depends on if you want the Userland RSS standard or the Other [blanking on name] RSS standard. Unfortunately, the RSS camps are still at war over syntax and required elements, and there are 9 mutually-incompatible often-used versions of

Re: [PHP] RSS feeder in PHP5?

2009-01-12 Thread Richard Heyes
> hope you're well today Well, I have a bit of runny nose, and as usual it's frickin' freezing (the joys of rat poison). But other than that fine thanks. You? -- Richard Heyes HTML5 Graphing for Firefox, Chrome, Opera and Safari: http://www.rgraph.org (Updated January 4th) -- PHP General Mail

Re: [PHP] RSS feeder in PHP5?

2009-01-12 Thread Richard Heyes
> ... Suppose I should change my feed then. At some point... :-) -- Richard Heyes HTML5 Graphing for Firefox, Chrome, Opera and Safari: http://www.rgraph.org (Updated January 4th) -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] RSS feeder in PHP5?

2009-01-12 Thread Nathan Rixham
Richard Heyes wrote: header('Content-Type: text/xml'); You actually mean application/xml not text/xml Well, no. I use text/xml and have done for nearly 5 years, and it works fine. it does, but in 2006 it was upgraded to application/rss+xml for all rss versions; all the ma

Re: [PHP] RSS feeder in PHP5?

2009-01-12 Thread Richard Heyes
>>> header('Content-Type: text/xml'); >>> >> You actually mean application/xml not text/xml Well, no. I use text/xml and have done for nearly 5 years, and it works fine. >> And its alot better to use DOMDocument in PHP5 for XML Creation rather >> than hardcode everything. DOMDocument would be o

Re: [PHP] RSS feeder in PHP5?

2009-01-12 Thread Nathan Rixham
Nathan Rixham wrote: here's an example / test code: $title = stripJunkSimple(stripslashes(htmlentities($item['title']))); there are a couple of custom functions in this script i forgot to pull out so stripJunkSimple can be removed and the db lookup replaced with you're own - just sample c

Re: [PHP] RSS feeder in PHP5?

2009-01-12 Thread Nathan Rixham
Craig Whitmore wrote: On Mon, 2009-01-12 at 11:02 +, Richard Heyes wrote: Is there something in PHP5 which can generate the RSS feed? You don't need an extension to help you generate an XML feed. You dimply output XML data instead of HTML and send an appropriate content type header, eg: he

Re: [PHP] RSS feeder in PHP5?

2009-01-12 Thread Craig Whitmore
On Mon, 2009-01-12 at 11:02 +, Richard Heyes wrote: > > Is there something in PHP5 which can generate the RSS feed? > > You don't need an extension to help you generate an XML feed. You > dimply output XML data instead of HTML and send an appropriate content > type header, eg: > > header('Con

Re: [PHP] RSS feeder in PHP5?

2009-01-12 Thread clive
Richard Heyes wrote: Is there something in PHP5 which can generate the RSS feed? You don't need an extension to help you generate an XML feed. You dimply output XML data instead of HTML and send an appropriate content type header, eg: header('Content-Type: text/xml'); I was just abo

Re: [PHP] RSS feeder in PHP5?

2009-01-12 Thread Richard Heyes
> > Oops, that should be the title of the individual article. -- Richard Heyes HTML5 Graphing for Firefox, Chrome, Opera and Safari: http://www.rgraph.org (Updated January 4th) -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.

Re: [PHP] RSS feeder in PHP5?

2009-01-12 Thread Richard Heyes
> Is there something in PHP5 which can generate the RSS feed? You don't need an extension to help you generate an XML feed. You dimply output XML data instead of HTML and send an appropriate content type header, eg: header('Content-Type: text/xml'); And the actual data:

[PHP] RSS feeder in PHP5?

2009-01-11 Thread Michelle Konzack
Hello, on my website I have a NEWS section on and the news are stored in a SQL table with "date", "summary", "fulltext" Now I like to add an RSS feed with something like which require only an add

Re: [PHP] RSS Feed on my PHP site

2009-01-07 Thread DanBarker85
Thanks for the help guys, much appreciated! -- View this message in context: http://www.nabble.com/RSS-Feed-on-my-PHP-site-tp21293513p21330097.html Sent from the PHP - General mailing list archive at Nabble.com. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://w

Re: [PHP] RSS Feed on my PHP site

2009-01-06 Thread Kevin Waterson
This one time, at band camp, DanBarker85 wrote: > > Hi > > i'm new to RSS Feeds, but how would it be possible to have a BBC News Feed > added to my website? > > I've searched for some kind of tutorial but haven't found anything. http://www.phpro.org/classes/Rss-Class.html enjoy Kevin -- PH

Re: [PHP] RSS Feed on my PHP site

2009-01-06 Thread Nathan Rixham
Richard Heyes wrote: i'm new to RSS Feeds, but how would it be possible to have a BBC News Feed added to my website? You can read and parse an RSS feed just like any other webpage. Magpie RSS will probably make life easier though. and http://rssphp.net will make it ultra simple :) -- PHP Ge

Re: [PHP] RSS Feed on my PHP site

2009-01-05 Thread Richard Heyes
> i'm new to RSS Feeds, but how would it be possible to have a BBC News Feed > added to my website? You can read and parse an RSS feed just like any other webpage. Magpie RSS will probably make life easier though. -- Richard Heyes HTML5 Graphing for FF, Chrome, Opera and Safari: http://www.rgra

Re: [PHP] RSS Feed on my PHP site

2009-01-05 Thread Wolf
DanBarker85 wrote: > > Hi > > i'm new to RSS Feeds, but how would it be possible to have a BBC News Feed > added to my website? > > I've searched for some kind of tutorial but haven't found anything. You STFW but haven't found anything? Wow... Google sure had a number of responses...

[PHP] RSS Feed on my PHP site

2009-01-05 Thread DanBarker85
Hi i'm new to RSS Feeds, but how would it be possible to have a BBC News Feed added to my website? I've searched for some kind of tutorial but haven't found anything. Thanks for any help! Dan -- View this message in context: http://www.nabble.com/RSS-Feed-on-my-PHP-site-tp21293513p21293513.h

Re: [PHP] PHP RSS to email

2008-09-09 Thread Richard Heyes
> ps: may be worth ntoing this'd make a great open source site or even > subscription service; I'd sign up for it! I've already knocked something up. It's attached if you want it. -- Richard Heyes HTML5 Graphing for IE7, FF, Chrome, Opera and Safari: http://www.phpguru.org/RGraph -- PHP Gener

Re: [PHP] PHP RSS to email

2008-09-09 Thread Nathan Rixham
Jason Pruim wrote: On Sep 8, 2008, at 7:59 AM, Richard Heyes wrote: Correct me if I'm wrong, but couldn't you use grab and parse the rss feeds you want, store the titles in a database, with a column for identifying if the e-mail has been sent? So every hour it checks your feeds, grabs the ne

Re: [PHP] PHP RSS to email

2008-09-08 Thread Jason Pruim
On Sep 8, 2008, at 7:59 AM, Richard Heyes wrote: Correct me if I'm wrong, but couldn't you use grab and parse the rss feeds you want, store the titles in a database, with a column for identifying if the e-mail has been sent? So every hour it checks your feeds, grabs the new ones, checks t

Re: [PHP] PHP RSS to email

2008-09-08 Thread Richard Heyes
> Correct me if I'm wrong, but couldn't you use grab and parse the rss feeds > you want, store the titles in a database, with a column for identifying if > the e-mail has been sent? So every hour it checks your feeds, grabs the new > ones, checks to see if emailSent="1" if not pass it to > send_not

Re: [PHP] PHP RSS to email

2008-09-08 Thread Jason Pruim
On Sep 8, 2008, at 6:50 AM, Richard Heyes wrote: Hi, Anyone know of a PHP based RSS to email gateway. What I'm looking to do is have something running on my website that provides an interface for specifying some feeds, and these are subsequently checked every hour or so. If a new news item is

[PHP] PHP RSS to email

2008-09-08 Thread Richard Heyes
Hi, Anyone know of a PHP based RSS to email gateway. What I'm looking to do is have something running on my website that provides an interface for specifying some feeds, and these are subsequently checked every hour or so. If a new news item is found, it fires off an email to me. Basically want th

[PHP] RSS Feed using PHP/MySQL errors

2008-08-06 Thread Don Mak
Trying to create an articles rss feed for my site and I keep getting an error that says: = A semi colon character was expected. Line: 7 Character: 60 http://www.chirunning.com/shop/pages.php?pageid=19&id=383 = I've tried every way imaginable to figure out why I am getting this error, fina

Re: [PHP] Thumbnail through PHP RSS parser

2008-07-29 Thread Philip Thompson
On Jul 29, 2008, at 6:33 AM, Lyubomir Tsvetanov wrote: Hello, folks! I'm trying to parse RSS feed and display it on my own page. MagpieRSS looks good enough for me, but I have a little problem. http://magpierss.sourceforge.net/ I want to display not only the title and description of each artic

[PHP] Re: Thumbnail through PHP RSS parser

2008-07-29 Thread Colin Guthrie
Lyubomir Tsvetanov wrote: Hello, folks! I'm trying to parse RSS feed and display it on my own page. MagpieRSS looks good enough for me, but I have a little problem. http://magpierss.sourceforge.net/ I want to display not only the title and description of each article, but the thumbnail as well.

[PHP] Thumbnail through PHP RSS parser

2008-07-29 Thread Lyubomir Tsvetanov
Hello, folks! I'm trying to parse RSS feed and display it on my own page. MagpieRSS looks good enough for me, but I have a little problem. http://magpierss.sourceforge.net/ I want to display not only the title and description of each article, but the thumbnail as well. For example, I tried to do

[PHP] RSS Creator

2006-08-30 Thread John Taylor-Johnston
Has anyone created an RSS feed creator in PHP? I could make one fast enough, but ... John -- John Taylor-Johnston - "If it's not Open Source, it's Murphy's Law." '''Cégep de Sherbrooke: ô¿ôhttp://www.cegepsherbr

[PHP] rss feeds from db

2006-06-22 Thread Dan McCullough
I'm having some problems where some undefined entity are getting in, these entities are usually html entities. sad thing is"¦bringing in these large chains is putting the xml doc points to the & in ";¦" as the problem. what do I need to do to get this stuff cleaned up? -- PHP General Mailing L

RE: Re: [PHP] RSS Generation

2006-04-10 Thread Richard Lynch
On Mon, April 10, 2006 1:36 pm, [EMAIL PROTECTED] wrote: > Thanks. I had added the header to the file. If the php extension is > good enough, then I am not going to worry about the .htaccess file. I'd be awful careful here... SOME versions of Microsoft IE are particularly stoopid about dealing

Re: [PHP] RSS Generation

2006-04-10 Thread Richard Lynch
On Mon, April 10, 2006 8:37 am, Robbert van Andel wrote: > I am working on creating some RSS feeds on my website using PHP. I'm > still > learning RSS but it seems easy enough. I managed to create the RSS > giving > the file a PHP extension. When I tried saving it with an xml > extension and > ad

RE: Re: [PHP] RSS Generation

2006-04-10 Thread php
Actually, the dot is the end of a sentence ... damn my excellnet grammar skills :) In the htaccess file, I hadn't included a dot at either end of XML. I think I'm going to just leave the file extension as PHP and see how that goes. Thanks, Robbert >Robbert, > >maybe it is only a typo, but you

RE: Re: [PHP] RSS Generation

2006-04-10 Thread php
Thanks. I had added the header to the file. If the php extension is good enough, then I am not going to worry about the .htaccess file. >> ... When I tried saving it with an xml extension and >> adding a .htaccess file to the directory in which the file was saved, I get >> prompted to save the

Re: [PHP] RSS Generation

2006-04-10 Thread Frank Arensmeier
Robbert, maybe it is only a typo, but you have written: "xml." not ".xml" (notice the position of the dot). /frank 10 apr 2006 kl. 15.37 skrev Robbert van Andel: I am working on creating some RSS feeds on my website using PHP. I'm still learning RSS but it seems easy enough. I managed to cr

Re: [PHP] RSS Generation

2006-04-10 Thread Dave Goodchild
If you want to serve .xml files as php, make the relevant change in the http.conf file (if you are using apache). On 10/04/06, Michael Crute <[EMAIL PROTECTED]> wrote: > > On 4/10/06, Robbert van Andel <[EMAIL PROTECTED]> wrote: > > First off, and I'm sorry that this isn't a PHP specific question,

Re: [PHP] RSS Generation

2006-04-10 Thread Greg Schnippel
> ... When I tried saving it with an xml extension and > adding a .htaccess file to the directory in which the file was saved, I get > prompted to save the file instead of being able to view the file in a > browser. The only line in the .htaccess file is AddType > application/x-httpd-php xml. I h

Re: [PHP] RSS Generation

2006-04-10 Thread Michael Crute
On 4/10/06, Robbert van Andel <[EMAIL PROTECTED]> wrote: > First off, and I'm sorry that this isn't a PHP specific question, but does > RSS require an XML extension? And if it does, how do I get the server to > serve the PHP file correctly if I rename it with the xml extension? No, you can use an

[PHP] RSS Generation

2006-04-10 Thread Robbert van Andel
I am working on creating some RSS feeds on my website using PHP. I'm still learning RSS but it seems easy enough. I managed to create the RSS giving the file a PHP extension. When I tried saving it with an xml extension and adding a .htaccess file to the directory in which the file was saved, I g

Re: [PHP] RSS / XML

2006-02-27 Thread John Nichel
Gustav Wiberg wrote: Hi there guys! Where is a good startpoint for learning XML Reader on a very, very basic level? (I appreciate links) Is RSS a technique for retrieving XML? I can't clue the pieces together... /G Please turn off your mail client's request for read receipts when sending

Re: [PHP] RSS / XML

2006-02-25 Thread Gustav Wiberg
- Original Message - From: "Weber Sites LTD" <[EMAIL PROTECTED]> To: "'Gustav Wiberg'" <[EMAIL PROTECTED]>; "'PHP General'" Sent: Saturday, February 25, 2006 7:37 PM Subject: RE: [PHP] RSS / XML Here are a

RE: [PHP] RSS / XML

2006-02-25 Thread Weber Sites LTD
ustav Wiberg [mailto:[EMAIL PROTECTED] Sent: Saturday, February 25, 2006 2:55 PM To: PHP General Subject: [PHP] RSS / XML Hi there guys! Where is a good startpoint for learning XML Reader on a very, very basic level? (I appreciate links) Is RSS a technique for retrieving XML? I can't clue

[PHP] RSS / XML

2006-02-25 Thread Gustav Wiberg
Hi there guys! Where is a good startpoint for learning XML Reader on a very, very basic level? (I appreciate links) Is RSS a technique for retrieving XML? I can't clue the pieces together... /G -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.p

Re: [PHP] RSS creator class

2005-09-19 Thread Rory Browne
On 9/19/05, David Robley <[EMAIL PROTECTED]> wrote: > Wondering if anyone knows of a PHP class or other PHP tool for creating > RSS/XML data which gracefully handles 'strange' characters such as M$ > Word's delightful 'smart quotes'. Why not do something simple like preg_replace [^a-zA-Z0-9_-](or

[PHP] RSS creator class

2005-09-19 Thread David Robley
Wondering if anyone knows of a PHP class or other PHP tool for creating RSS/XML data which gracefully handles 'strange' characters such as M$ Word's delightful 'smart quotes'. I've found a couple so far, libRSS (by Jan Pieper) and ContentFeeder 2.0, but neither deals very well with the plethora of

RE: [PHP] RSS news feed (slightly 0T)

2005-05-19 Thread Reynier Perez Mira
: 'Ryan A'; 'php' Asunto: RE: [PHP] RSS news feed (slightly 0T) > > Hey, > > Can anyone suggest a few places where i can get some decent > tech/programming/php news feeds? > > I presently have the PHP.net feed (but its not too good > because the news

Re: [PHP] RSS news feed (slightly 0T)

2005-05-18 Thread Richard Lynch
On Wed, May 18, 2005 6:26 am, Ryan A said: > Can anyone suggest a few places where i can get some decent > tech/programming/php news feeds? The New York PHP User Group seems to have a pretty hip PHP news feed on their home page, last time I checked. Figure out where they get their news, if you ca

RE: [PHP] RSS news feed (slightly 0T)

2005-05-18 Thread Jared Williams
> > Hey, > > Can anyone suggest a few places where i can get some decent > tech/programming/php news feeds? > > I presently have the PHP.net feed (but its not too good > because the news does not change much in days) and I am using > yahoo's feeds for "software", "digital music" and "internet

RE: [PHP] RSS news feed (slightly 0T)

2005-05-18 Thread Jared Williams
> Hey, > > Can anyone suggest a few places where i can get some decent > tech/programming/php news feeds? > > I presently have the PHP.net feed (but its not too good > because the news does not change much in days) and I am using > yahoo's feeds for "software", "digital music" and "internet".

Re: [PHP] RSS news feed (slightly 0T)

2005-05-18 Thread Philip Hallstrom
Can anyone suggest a few places where i can get some decent tech/programming/php news feeds? I don't know if they have RSS feeds on them or not, but I'd try... http://www.zend.com/ http://www.devshed.com/c/b/PHP/ http://www.phpbuilder.com/ And all or none of the sites listed here: http://www.php.ne

[PHP] RSS news feed (slightly 0T)

2005-05-18 Thread Ryan A
Hey, Can anyone suggest a few places where i can get some decent tech/programming/php news feeds? I presently have the PHP.net feed (but its not too good because the news does not change much in days) and I am using yahoo's feeds for "software", "digital music" and "internet". I was using slashd

RE: [PHP] rss feeder using php?

2005-01-28 Thread Josip Dzolonga
On Fri, 2005-01-28 at 11:49 +, Chris Ramsay wrote: > [snip] > we are looking for a RSS feeder implemented in php. > > Is there anything good out there (something you have tried + tested). > [/snip] I used to code a PHP5 rss-parsing class some time ago, but I haven't finished it (stopped at ca

RE: [PHP] rss feeder using php?

2005-01-28 Thread Chris Ramsay
[snip] we are looking for a RSS feeder implemented in php. Is there anything good out there (something you have tried + tested). [/snip] I have used the following - http://www.phpinsider.com/php/code/ContentFeeder/ - is worth a go... [snip] >Please, do not answer "do a google search", because I

[PHP] rss feeder using php?

2005-01-28 Thread symbulos partners
Dear friends, we are looking for a RSS feeder implemented in php. Is there anything good out there (something you have tried + tested). Please, do not answer "do a google search", because I ALREADY know how to do a google search. What we are interested is some feedback on real products you have

RE: [PHP] RSS / eregi_replace()

2004-08-03 Thread Richard Bewley
* Thus wrote Anthony Ritter: > Greetings, > > I'm using an RSS feed from the New York Times and right now the a href link > takes the user to the same window. > > I'd like the link to open in it's own window by using the target .html > attribute. > > I was hoping that I could use the eregi_repla

Re: [PHP] RSS / eregi_replace()

2004-08-03 Thread Anthony Ritter
Justin Patrin <[EMAIL PROTECTED]> wrote in message: > Thanks, lots of good info here. It's nice to have all of the info at once. > > I don't know about eregs myself, but I'll try a preg solution: > > $new_text = preg_replace('!(.*?)!', ' target="_blank">\1', $text); Thank you. I tried th

Re: [PHP] RSS / eregi_replace()

2004-08-03 Thread Curt Zirzow
* Thus wrote Anthony Ritter: > Greetings, > > I'm using an RSS feed from the New York Times and right now the a href link > takes the user to the same window. > > I'd like the link to open in it's own window by using the target .html > attribute. > > I was hoping that I could use the eregi_repla

Re: [PHP] RSS / eregi_replace()

2004-08-03 Thread Justin Patrin
On Tue, 3 Aug 2004 18:36:02 -0400, Anthony Ritter <[EMAIL PROTECTED]> wrote: > Greetings, > > I'm using an RSS feed from the New York Times and right now the a href link > takes the user to the same window. > > I'd like the link to open in it's own window by using the target .html > attribute. >

[PHP] RSS / eregi_replace()

2004-08-03 Thread Anthony Ritter
Greetings, I'm using an RSS feed from the New York Times and right now the a href link takes the user to the same window. I'd like the link to open in it's own window by using the target .html attribute. I was hoping that I could use the eregi_replace() call by inserting: http://\\0";>target="_

[PHP] RSS and your opinion needed.

2004-07-23 Thread PHP Gen
Hi, Some time back I came on the list and asked your advise for a class that gets RSS feeds from diff sites, I got quite a few good sites and a particular class that was really good. Unfortunatly I lost it in a webhost change but here is what it did: It got the feed and cached it for a day (or two

[PHP] RSS/RDF generator

2004-05-21 Thread electroteque
Hi there, I was wondering if there is a standard pear class like the XML_Tree to build RSS/RDF documents from the database ? Let me know -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] rss/rdf feed classes

2003-12-11 Thread Ray Hunter
Check this out: http://builder.com.com/5100-6374-5109834.html?tag=sc -- Ray On Thu, 2003-12-11 at 11:41, Rolf Brusletto wrote: > Hey all - > > I'm looking for a class that returns a rss/rdf feed with each of the > items as an array, or suggestions on how to items into an array... > > Tia, >

RE: [PHP] rss/rdf feed classes

2003-12-11 Thread Daevid Vincent
We have pretty good luck with http://www.fase4.com/rdf/ Daevid Vincent http://daevid.com > -Original Message- > From: Matt Matijevich [mailto:[EMAIL PROTECTED] > Sent: Thursday, December 11, 2003 10:46 AM > To: [EMAIL PROTECTED] > Subject: Re: [PHP] rss/rdf feed clas

Re: [PHP] rss/rdf feed classes

2003-12-11 Thread Matt Matijevich
I'm looking for a class that returns a rss/rdf feed with each of the items as an array, or suggestions on how to items into an array... try google and freshmeat.net You should be able to find plenty of examples and classes. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, vi

[PHP] rss/rdf feed classes

2003-12-11 Thread Rolf Brusletto
Hey all - I'm looking for a class that returns a rss/rdf feed with each of the items as an array, or suggestions on how to items into an array... Tia, Rolf Brusletto [EMAIL PROTECTED] www.phpExamples.net -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net

[PHP] RSS pagenting (was PHP RSS sites and SlashDot)

2003-12-06 Thread Ryan A
Hi again everyone, Thank you to everyone who replied with suggestions and locations for getting RSS feeds, from your own sites and from others, some good and some.not so good :-D We have finally decided on around 12 differient feeds/places for 3-5 differient pages on the new site. Nearly al

Re: [PHP] PHP RSS sites and SlashDot

2003-12-06 Thread Burhan Khalid
Ryan A wrote: Hi, I am totally new to using RSS feeds and need a little help. I downloaded a few good classes to use RSS but dont know where to get the feeds from... Say hello to www.syndic8.com :D (had the same problem trying to get a list of feeds for my own non-commercial site) our site is goi

[PHP] Re: PHP RSS sites and SlashDot

2003-12-05 Thread Manuel Lemos
Hello, On 12/05/2003 05:34 PM, Ryan A wrote: I am totally new to using RSS feeds and need a little help. I downloaded a few good classes to use RSS but dont know where to get the feeds from... our site is going to be totally PHP geared: eg: PHP Articles Program snippets (forum (maybe)) etc Any id

Re: [PHP] PHP RSS sites and SlashDot

2003-12-05 Thread Ryan A
Hi, Thanks for replying. just had a look at your feed, pretty good but I dont think it will be useful to the people who visit my site as its too commercial and basically I want nothing but useful stuff to the visitor who will be a programmer or a newbie. The site is going to be "commercially unt

Re: [PHP] PHP RSS sites and SlashDot

2003-12-05 Thread Ajai Khattri
On Fri, Dec 05, 2003 at 08:34:15PM +0100, Ryan A wrote: > I downloaded a few good classes to use RSS but dont know where to get the > feeds from... Basically RSS is just an XML file that you can retrieve from a site using HTTP. Sites that make feeds available generally have a link to them somewhe

Re: [PHP] PHP RSS sites and SlashDot

2003-12-05 Thread Ryan A
Eddie > > -Original Message- > From: Ryan A [mailto:[EMAIL PROTECTED] > Sent: Friday, December 05, 2003 2:34 PM > To: [EMAIL PROTECTED] > Subject: [PHP] PHP RSS sites and SlashDot > > > Hi, > I am totally new to using RSS feeds and need a little help. > > I d

Re: [PHP] PHP RSS sites and SlashDot

2003-12-05 Thread Mark Pratt
Hello Ryan, For fun you might also want to try our XML/RSS Feed for PHP Solution Providers. http://www.opensourcexperts.com/Index/rdfrss/PHP.xml You might even earn a couple of EUROs because we put into a system an offer for someone to write a how-to on how to integrate this feed in a PHP sit

Re: [PHP] PHP RSS sites and SlashDot

2003-12-05 Thread Matt Matijevich
Any idea how I can get a feed from Slashdot? or any other good programming\tech sites am basically trying to get a feed from around 4 sites for around 5 links each... http://slashdot.org/slashdot.rss try google, there is a bunch of good ones. -- PHP General Mailing List (http://www.php.net/

[PHP] PHP RSS sites and SlashDot

2003-12-05 Thread Ryan A
Hi, I am totally new to using RSS feeds and need a little help. I downloaded a few good classes to use RSS but dont know where to get the feeds from... our site is going to be totally PHP geared: eg: PHP Articles Program snippets (forum (maybe)) etc Any idea how I can get a feed from Slashdot? o

Re: [PHP] RSS

2003-03-13 Thread Paul Roberts
this months free sample article in PHP Architect - A monthly magazine for PHP Professionals. http://www.phparch.com/ - Original Message - From: "Sebi" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, March 13, 2003 11:47 AM Subject: [PHP] RSS Hi, Do

Re: [PHP] RSS

2003-03-13 Thread - Edwin
Hi, "Sebi" <[EMAIL PROTECTED]> wrote: > > Hi, > Does some one know where I can find a RSS parser exmple? I think you can find one here: http://www.google.co.jp/search?q=PHP+RSS+parser&ie=UTF-8&oe=UTF-8&hl= en&lr= ;) - E

[PHP] RSS

2003-03-13 Thread Sebi
Hi, Does some one know where I can find a RSS parser exmple? Tnx -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php