<?xml version="1.0" encoding="utf-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	>
<channel>
	<title>Comments on: Adding AJAX to a Website step by step, Part II</title>
	<atom:link href="http://blog.joshuaeichorn.com/archives/2006/08/10/adding-ajax-to-a-website-step-by-step-part-ii/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.joshuaeichorn.com/archives/2006/08/10/adding-ajax-to-a-website-step-by-step-part-ii/</link>
	<description>The weblog of Joshua Eichorn, AJAX, PHP and Open Source</description>
	<pubDate>Wed, 20 Aug 2008 16:54:38 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6.1-alpha</generator>
		<item>
		<title>By: Peter</title>
		<link>http://blog.joshuaeichorn.com/archives/2006/08/10/adding-ajax-to-a-website-step-by-step-part-ii/#comment-262112</link>
		<dc:creator>Peter</dc:creator>
		<pubDate>Wed, 19 Sep 2007 04:25:16 +0000</pubDate>
		<guid isPermaLink="false">http://blog.joshuaeichorn.com/archives/2006/08/10/adding-ajax-to-a-website-step-by-step-part-ii/#comment-262112</guid>
		<description>Hi there, Nice blog posting about Adding AJAX to a Website step by step, Part II. I would have to agree with you on this one. I am going to look more into . This Wednesday I have time.</description>
		<content:encoded><![CDATA[<p>Hi there, Nice blog posting about Adding AJAX to a Website step by step, Part II. I would have to agree with you on this one. I am going to look more into . This Wednesday I have time.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Peter</title>
		<link>http://blog.joshuaeichorn.com/archives/2006/08/10/adding-ajax-to-a-website-step-by-step-part-ii/#comment-262003</link>
		<dc:creator>Peter</dc:creator>
		<pubDate>Tue, 18 Sep 2007 22:27:30 +0000</pubDate>
		<guid isPermaLink="false">http://blog.joshuaeichorn.com/archives/2006/08/10/adding-ajax-to-a-website-step-by-step-part-ii/#comment-262003</guid>
		<description>Hi, I came across your blog posting after searching for  and your post on Adding AJAX to a Website step by step, Part II makes an interesting read. Thanks for sharing. I will research more next Tuesday when I have the day off.</description>
		<content:encoded><![CDATA[<p>Hi, I came across your blog posting after searching for  and your post on Adding AJAX to a Website step by step, Part II makes an interesting read. Thanks for sharing. I will research more next Tuesday when I have the day off.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: wesley</title>
		<link>http://blog.joshuaeichorn.com/archives/2006/08/10/adding-ajax-to-a-website-step-by-step-part-ii/#comment-30784</link>
		<dc:creator>wesley</dc:creator>
		<pubDate>Tue, 15 Aug 2006 08:08:10 +0000</pubDate>
		<guid isPermaLink="false">http://blog.joshuaeichorn.com/archives/2006/08/10/adding-ajax-to-a-website-step-by-step-part-ii/#comment-30784</guid>
		<description>Btw, You haven't said anywhere (or I missed it) what browser is being used to render the screenshot, that information is quite valuable to know though.</description>
		<content:encoded><![CDATA[<p>Btw, You haven&#8217;t said anywhere (or I missed it) what browser is being used to render the screenshot, that information is quite valuable to know though.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Adding AJAX to a Website step by step, Part II &#62; Archives &#62; Web 2.0 Stores</title>
		<link>http://blog.joshuaeichorn.com/archives/2006/08/10/adding-ajax-to-a-website-step-by-step-part-ii/#comment-30375</link>
		<dc:creator>Adding AJAX to a Website step by step, Part II &#62; Archives &#62; Web 2.0 Stores</dc:creator>
		<pubDate>Fri, 11 Aug 2006 12:11:10 +0000</pubDate>
		<guid isPermaLink="false">http://blog.joshuaeichorn.com/archives/2006/08/10/adding-ajax-to-a-website-step-by-step-part-ii/#comment-30375</guid>
		<description>[...]     Back with the second part of his postings on adding Ajax to a website, Joshua Eichorn has this new item on his blog today (picking up from this previous post) - a look at polling the server for the latest data with the HTML_AJAX PEAR package. I have a lot more change’s i’d like to make to webthumb so the last article (Adding AJAX to a website step by step) is now the start of the series. In this article will be taking front page of webthumb and making it live. The the stats and recent thumbnails will update in real time, making for a nice slick presentation. He first focuses on getting real-time information back with the help of Ajax. In his case, it's grabbing the latest thumbnails created by the application, fetched by periodic polling back from a timed script performing an Ajax request. He moves on to the code, showing how to export the PHP class for the updater, a sample result for the request and the code for the actual server the Ajax request will be made to. Then, it's back to the client side of things with the Javascript needed to make the call back to the server, parse the response, and update the page with the latest information. There's also a little aside that talks about how the HTML_AJAX package delivers it's Javascript libraries and how this can be used to grab and push out the moo.fx library along with the other scripts to create a a fade in and out of the updates made to the page to make them more apparent to the user.      August 10th, 2006 [...]</description>
		<content:encoded><![CDATA[<p>[...]     Back with the second part of his postings on adding Ajax to a website, Joshua Eichorn has this new item on his blog today (picking up from this previous post) - a look at polling the server for the latest data with the HTML_AJAX PEAR package. I have a lot more change’s i’d like to make to webthumb so the last article (Adding AJAX to a website step by step) is now the start of the series. In this article will be taking front page of webthumb and making it live. The the stats and recent thumbnails will update in real time, making for a nice slick presentation. He first focuses on getting real-time information back with the help of Ajax. In his case, it&#8217;s grabbing the latest thumbnails created by the application, fetched by periodic polling back from a timed script performing an Ajax request. He moves on to the code, showing how to export the PHP class for the updater, a sample result for the request and the code for the actual server the Ajax request will be made to. Then, it&#8217;s back to the client side of things with the Javascript needed to make the call back to the server, parse the response, and update the page with the latest information. There&#8217;s also a little aside that talks about how the HTML_AJAX package delivers it&#8217;s Javascript libraries and how this can be used to grab and push out the moo.fx library along with the other scripts to create a a fade in and out of the updates made to the page to make them more apparent to the user.      August 10th, 2006 [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: PHPDeveloper.org</title>
		<link>http://blog.joshuaeichorn.com/archives/2006/08/10/adding-ajax-to-a-website-step-by-step-part-ii/#comment-30250</link>
		<dc:creator>PHPDeveloper.org</dc:creator>
		<pubDate>Thu, 10 Aug 2006 12:58:15 +0000</pubDate>
		<guid isPermaLink="false">http://blog.joshuaeichorn.com/archives/2006/08/10/adding-ajax-to-a-website-step-by-step-part-ii/#comment-30250</guid>
		<description>&lt;strong&gt;Joshua Eichorn's Blog: Adding AJAX to a Website step by step, Part II...&lt;/strong&gt;

...</description>
		<content:encoded><![CDATA[<p><strong>Joshua Eichorn&#8217;s Blog: Adding AJAX to a Website step by step, Part II&#8230;</strong></p>
<p>&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ajaxian &#187; Adding AJAX to a Website step by step, Part II</title>
		<link>http://blog.joshuaeichorn.com/archives/2006/08/10/adding-ajax-to-a-website-step-by-step-part-ii/#comment-30249</link>
		<dc:creator>Ajaxian &#187; Adding AJAX to a Website step by step, Part II</dc:creator>
		<pubDate>Thu, 10 Aug 2006 12:49:41 +0000</pubDate>
		<guid isPermaLink="false">http://blog.joshuaeichorn.com/archives/2006/08/10/adding-ajax-to-a-website-step-by-step-part-ii/#comment-30249</guid>
		<description>[...] Back with the second part of his postings on adding Ajax to a website, Joshua Eichorn has this new item on his blog today (picking up from this previous post) - a look at polling the server for the latest data with the HTML_AJAX PEAR package.   I have a lot more change’s i’d like to make to webthumb so the last article (Adding AJAX to a website step by step) is now the start of the series. In this article will be taking front page of webthumb and making it live. The the stats and recent thumbnails will update in real time, making for a nice slick presentation. [...]</description>
		<content:encoded><![CDATA[<p>[...] Back with the second part of his postings on adding Ajax to a website, Joshua Eichorn has this new item on his blog today (picking up from this previous post) - a look at polling the server for the latest data with the HTML_AJAX PEAR package.   I have a lot more change’s i’d like to make to webthumb so the last article (Adding AJAX to a website step by step) is now the start of the series. In this article will be taking front page of webthumb and making it live. The the stats and recent thumbnails will update in real time, making for a nice slick presentation. [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: There and Back Again &#187; Blog Archive &#187; Adding AJAX to a website step by step</title>
		<link>http://blog.joshuaeichorn.com/archives/2006/08/10/adding-ajax-to-a-website-step-by-step-part-ii/#comment-30194</link>
		<dc:creator>There and Back Again &#187; Blog Archive &#187; Adding AJAX to a website step by step</dc:creator>
		<pubDate>Thu, 10 Aug 2006 07:21:33 +0000</pubDate>
		<guid isPermaLink="false">http://blog.joshuaeichorn.com/archives/2006/08/10/adding-ajax-to-a-website-step-by-step-part-ii/#comment-30194</guid>
		<description>[...] There and Back Again The weblog of Joshua Eichorn, AJAX, PHP and Open Source      &#171; I&#8217;ll be at LinuxWorld  Adding AJAX to a Website step by step, Part II &#187; [...]</description>
		<content:encoded><![CDATA[<p>[...] There and Back Again The weblog of Joshua Eichorn, AJAX, PHP and Open Source      &laquo; I&#8217;ll be at LinuxWorld  Adding AJAX to a Website step by step, Part II &raquo; [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>
