News Feed
Jobs Feed
Sections

Recent Jobs

News Archive
feed this:

CSS Tricks:
Create a Slick iPhone/Mobile Interface from any RSS Feed
July 17, 2008 @ 10:22:55

On the CSS Tricks blog there's a recent article showing how to combine the jQuery Javascript library and the SimplePie PHP feed aggregator to create a iPhone/mobile interface to any RSS feed.

We are going to create a web page that is formatted specifically for the iPhone (but would presumably be good for other mobile devices as well). This web page will dynamically fill itself with content from any RSS feed that you give it. The interface is going to be built to be easy to use on a mobile device, with large "touchable" areas and nice (jQuery) animations that whisk you between articles.

They work through the process - five simple steps:

  • Create the iPhone Environment
  • Pull in the RSS Feed
  • Creating the Front Page: Headlines Only
  • Creating the Article Pages: jQuery Slider Style
  • Adding Some Flair

All code and images needed are included (as well as a demo if you'd like to try it out).

0 comments voice your opinion now!
iphone tutorial mobile rss feed reader simplepie jquery



Doug Hill's Blog:
PHP Weekly Reader - May 16th 2008
March 17, 2008 @ 09:35:52

Doug Hill has decided to start a series on his blog that details some of the happenings in the PHP community for the past week, of which this is the first:

I spend way too much time reading blogs, surfing PHP and web development articles online. I resolve to cut back but things just sneak back into my reader somehow, and believe me dzone doesn't help. But I've came up with a way to justify all that time, I call it research.

He mentions things like the infamous CIO article, Zend's Jolt Award, comparing the Zend Framework versus PEAR and PHP releases, books and various other language-related tidbits.

Check out the post for more and keep an eye on Doug's blog for future weekly summaries.

0 comments voice your opinion now!
weekly reader summary article news trends


ProDevTips.com:
Ajax, ZF and Smarty feed reader part 3
November 19, 2007 @ 11:19:00

ProDevTips.com has posted the thier part of their series looking at building a feed reader with Ajax, the Zend Framework and Smarty (see parts one and two here).

This time we will take a look at the feed list window and the manage window. This will also be the concluding part of the series.

All of the code is provided (a full download is here for all three parts) and they gloss over a lot of the code assuming you know something about reading it - including a lot of the HTML for the presentation.

2 comments voice your opinion now!
prodevtips ajax zendframework smarty feed reader prodevtips ajax zendframework smarty feed reader


ProDevTips.com:
Ajax, ZF and Smarty feed reader (Part 2)
November 12, 2007 @ 10:29:00

ProDevTips.com has posted part two of their look at creating a feed reader with Ajax, the Zend Framework and Smarty today.

In this latest part, they pick up where they left off before and march on towards the goal. They point out another tutorial over on the IBM developerWorks website that can help you understand a bit more about the Ajax side of things before getting into part 2, but it's not a requirement.

They create the page with the Javascript include files and a form with a button to make the action happen.

0 comments voice your opinion now!
ajax zendframework smarty tutorial feed reader ajax zendframework smarty tutorial feed reader


ProDevTips.com:
Ajax, ZF and Smarty feed reader - part 1
November 07, 2007 @ 16:28:00

On the ProDevTips.com website, there's a new tutorial (part one of a series) that walks the developer through the integration of the Zend Framework, some Ajax functionality and Smarty to create a feed reader.

In this series I will walk you through the code of a site that uses only Ajax and Scriptaculous to handle it's completely windowed interface. Making an interface like this is not really good design, it's only done here for the sake of teaching. It is kinda cool though. Especially if you have a big screen.

The source code is available for download and having it makes the installation and setup of the system much simpler. With it, you're only about fifteen steps away from getting the application up and running.

0 comments voice your opinion now!
zendframework smarty ajax feed reader tutorial zendframework smarty ajax feed reader tutorial


HowTo Forge:
How To Set Up A Facebook RSS Feed Reader
September 03, 2007 @ 13:08:00

The HowTo Forge website has this new tutorial posted today taking an extensive look (complete with tons of screenshots and code along the way) on how to create a Facebook RSS reader to add to your blog of choice.

This guide shows how you can build an RSS feed reader application for the social network Facebook that will display your blog's/web site's RSS feed on the profile pages of Facebook users (that have installed the RSS feed reader application). Each item of the RSS feed will have a Share button so that people can share the story with their friends, and the application will have an Invite link so that people can invite up to ten friends at once to also install this feed reader application.

They use PHP5's functionality to make building the reader simple and take advantage of Facebook's simple application system to make the reader. You can stop after the first few steps of the tutorial and have a working application, but they take it further. They show how to make customizations to the reader, making the feed auto-update, creating an icon for the app and make an invite page.

0 comments voice your opinion now!
rss reader facebook application php5 tutorial rss reader facebook application php5 tutorial


DevShed:
Creating an RSS Reader Application
February 21, 2007 @ 09:02:00

In this new tutorial from DevShed (in their "RSS Reader" series), they finally get down to the real heart of the application - the code.

The other other two parts prepared you for this, the creation of the actual RSS file - correctly formatted and filled with data. They also include a simple feed reader so you can ensure your document can be read correctly.

Unfortunately, they chose to go with a long line of fwrites to push out each line of the file instead of pushing it all into one string and writing that. Using the multiples makes more work for the file handling and could result in a slowdown for a large amount of items in the RSS file.

0 comments voice your opinion now!
create tutorial rss reader application output fwrite create tutorial rss reader application output fwrite


DevShed:
Creating an RSS Reader the Reader
February 09, 2007 @ 11:43:48

In a new tutorial from DevShed today, they walk you through the creation of a simple (very simple) RSS reader in PHP.

In this article we are going to discuss how to create a PHP-based RSS reader. It would be helpful if you know something about XML, but not really necessary. RSS documents have three main tags: Title, Link and Description. And they all do exactly what their names suggest. I will go into detail about these tags in my second article dealing with 'building an RSS file.' For now, we will only focus on the 'reading' part of the article.

They start with an overview, showing where you'll come from and where you're headed to. They include a section introducing the XML handing functions (SAX, not DOM) and use them in a chunk of code to read in the RSS file and handle the contents.

0 comments voice your opinion now!
rss news reader xml sax functionality parse rss news reader xml sax functionality parse


PHPHacks.com:
How to create an Ajax RSS reader with PHP
September 26, 2006 @ 07:54:57

If you've ever needed a good project to get started with combining PHP and Ajax, you should definitely take a look at this new tutorial from the PHPHacks.com website today. They demonstrate how to create a simple RSS reader combining the power of PHP and the client-side abilities of Ajax.

They start by explaining some of the terms they'll be working with, including:

  • RSS - and an example document
  • XSL - to help create the RSS feed
  • SimpleXML - to read in and parse the info from a remote server
After that, they jump right in, creating their first file - the main functionality for the application (on the PHP side). They opt to do everything by hand and not use any of the frameworks that are already out there so you can really understand what goes into it. They provide all of the code you'll need to get things set up, including the CSS to get things nice and styled and a few usage examples to show you how it all ties in together.

0 comments voice your opinion now!
ajax rss reader tutorial code example ajax rss reader tutorial code example


ScratchProjects.com:
Build an RSS Feed Reader using Ajax and PHP
August 02, 2006 @ 09:24:29

ScratchProjects has posted a two-part series on cominging two powerful web technologies - PHP and Ajax - to create a simple, yet effective application, an RSS feed reader.

In part one of the series, they focus on the fundamentals - the "hows" of combining PHP and Ajax, introducting the code and its parts, then getting into the examples, showing how to make a simple call to the rss.php backend script to grab the RSS data and push it into a DIV on the page.

Part two jumps in with both feet, setting up the database you'll store the feed locations in before getting to the heart of the application. They create the form to add the feed to the database, make the functions to grab a list of the feeds from the database, and, finally, display the parsed results of those feeds on the page.

It's nothing fancy, but it does show the development of a simple application in two parts complete with the source code ready to be downloaded and adapted.

0 comments voice your opinion now!
ajax rss feed reader tutorial source code ajax rss feed reader tutorial source code



Community Events











Don't see your event here?
Let us know!


job ajax security release zendframework cakephp example developer conference PHP5 code framework database PEAR mysql book zend releases package application

All content copyright, 2008 PHPDeveloper.org :: info@phpdeveloper.org - Powered by the Solar PHP Framework