<?xml version="1.0" encoding="UTF-8"?><!-- generator="wordpress/2.0.4" -->
<rss version="2.0" 
	xmlns:content="http://purl.org/rss/1.0/modules/content/">
<channel>
	<title>Comments on: Ajax &#038; PHP without using the XmlHttpRequest Object</title>
	<link>http://phpit.net/article/ajax-php-without-xmlhttprequest/</link>
	<description>PHPit has dozens of PHP articles, codesnippets and FAQ's.</description>
	<pubDate>Mon, 09 Jun 2008 00:57:33 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.0.4</generator>

	<item>
		<title>by: Stoyan</title>
		<link>http://phpit.net/article/ajax-php-without-xmlhttprequest/#comment-19969</link>
		<pubDate>Mon, 23 Oct 2006 13:43:59 +0000</pubDate>
		<guid>http://phpit.net/article/ajax-php-without-xmlhttprequest/#comment-19969</guid>
					<description>In IE there is a way to tell when the new script is done loading:
http://www.phpied.com/javascript-include-ready/</description>
		<content:encoded><![CDATA[<p>In IE there is a way to tell when the new script is done loading:<br />
<a href='http://www.phpied.com/javascript-include-ready/' rel='nofollow'>http://www.phpied.com/javascript-include-ready/</a>
</p>
]]></content:encoded>
				</item>
	<item>
		<title>by: Kris Zyp</title>
		<link>http://phpit.net/article/ajax-php-without-xmlhttprequest/#comment-14488</link>
		<pubDate>Sun, 17 Sep 2006 02:09:47 +0000</pubDate>
		<guid>http://phpit.net/article/ajax-php-without-xmlhttprequest/#comment-14488</guid>
					<description>BTW, I think they also introduced the innerHTML property, which I think was a great contribution as well.</description>
		<content:encoded><![CDATA[<p>BTW, I think they also introduced the innerHTML property, which I think was a great contribution as well.
</p>
]]></content:encoded>
				</item>
	<item>
		<title>by: Kris Zyp</title>
		<link>http://phpit.net/article/ajax-php-without-xmlhttprequest/#comment-14486</link>
		<pubDate>Sun, 17 Sep 2006 02:03:27 +0000</pubDate>
		<guid>http://phpit.net/article/ajax-php-without-xmlhttprequest/#comment-14486</guid>
					<description>When we say that Microsoft invented AJAX, we mean Microsoft introduced the XMLHttpRequest object, which was really key to the popularization of AJAX.  Obviously this article highlights the other techniques for AJAX, but generally AJAX is based around the XMLHttpRequest as it is the most straightforward way of doing AJAX.  While it is more fashionable to always criticize MS, we should be thankful for their contribution to this technology.</description>
		<content:encoded><![CDATA[<p>When we say that Microsoft invented AJAX, we mean Microsoft introduced the XMLHttpRequest object, which was really key to the popularization of AJAX.  Obviously this article highlights the other techniques for AJAX, but generally AJAX is based around the XMLHttpRequest as it is the most straightforward way of doing AJAX.  While it is more fashionable to always criticize MS, we should be thankful for their contribution to this technology.
</p>
]]></content:encoded>
				</item>
	<item>
		<title>by: Dimitris Anogiatis</title>
		<link>http://phpit.net/article/ajax-php-without-xmlhttprequest/#comment-12028</link>
		<pubDate>Mon, 28 Aug 2006 22:56:52 +0000</pubDate>
		<guid>http://phpit.net/article/ajax-php-without-xmlhttprequest/#comment-12028</guid>
					<description>?? Microsoft invented Ajax? OK you guys... if you do wanna believe so... go ahead... the way I remember things is a little bit different... and I could be wrong... but I remember Netscape launching Livescript... which actually became Javascript... Microsoft's Answer was VBScript and JScript... as for XML it's been brewing by the W3C a long time before Microsoft pushed it out with their MSXML controls... thing is... AJAX is another tool in our arsenal... the point is... not to get grappled by the hype... but use this to create better websites... move the internet forward... not get stuck to who made what... that's my humble oppinion...</description>
		<content:encoded><![CDATA[<p>?? Microsoft invented Ajax? OK you guys&#8230; if you do wanna believe so&#8230; go ahead&#8230; the way I remember things is a little bit different&#8230; and I could be wrong&#8230; but I remember Netscape launching Livescript&#8230; which actually became Javascript&#8230; Microsoft&#8217;s Answer was VBScript and JScript&#8230; as for XML it&#8217;s been brewing by the W3C a long time before Microsoft pushed it out with their MSXML controls&#8230; thing is&#8230; AJAX is another tool in our arsenal&#8230; the point is&#8230; not to get grappled by the hype&#8230; but use this to create better websites&#8230; move the internet forward&#8230; not get stuck to who made what&#8230; that&#8217;s my humble oppinion&#8230;
</p>
]]></content:encoded>
				</item>
	<item>
		<title>by: Kris Zyp</title>
		<link>http://phpit.net/article/ajax-php-without-xmlhttprequest/#comment-11696</link>
		<pubDate>Tue, 22 Aug 2006 03:53:05 +0000</pubDate>
		<guid>http://phpit.net/article/ajax-php-without-xmlhttprequest/#comment-11696</guid>
					<description>Also, one warning about script tag remote loading.  If the remote call fails (because of a connection timeout or server error), there is no way to be notified of the error, whereas the XMLHttpRequest will still call the callback function on failure to notify that it failed.</description>
		<content:encoded><![CDATA[<p>Also, one warning about script tag remote loading.  If the remote call fails (because of a connection timeout or server error), there is no way to be notified of the error, whereas the XMLHttpRequest will still call the callback function on failure to notify that it failed.
</p>
]]></content:encoded>
				</item>
	<item>
		<title>by: Kris Zyp</title>
		<link>http://phpit.net/article/ajax-php-without-xmlhttprequest/#comment-11695</link>
		<pubDate>Tue, 22 Aug 2006 03:37:27 +0000</pubDate>
		<guid>http://phpit.net/article/ajax-php-without-xmlhttprequest/#comment-11695</guid>
					<description>I have been using this technique for remote calls in my own project for some time now (www.authenteo.com), and another big advantage of using script tags is that if your data returned from the server is JSON form and includes actual JavaScript functions, the script tag automatically does the JSON parsing and your debugger can properly debug the functions (show errors and set breakpoints).
Of course, JSON is also becoming increasingly popular as a format for AJAx, and it also strips the x of the AJAX :).</description>
		<content:encoded><![CDATA[<p>I have been using this technique for remote calls in my own project for some time now (www.authenteo.com), and another big advantage of using script tags is that if your data returned from the server is JSON form and includes actual JavaScript functions, the script tag automatically does the JSON parsing and your debugger can properly debug the functions (show errors and set breakpoints).<br />
Of course, JSON is also becoming increasingly popular as a format for AJAx, and it also strips the x of the AJAX :).
</p>
]]></content:encoded>
				</item>
	<item>
		<title>by: James</title>
		<link>http://phpit.net/article/ajax-php-without-xmlhttprequest/#comment-9947</link>
		<pubDate>Wed, 02 Aug 2006 18:02:45 +0000</pubDate>
		<guid>http://phpit.net/article/ajax-php-without-xmlhttprequest/#comment-9947</guid>
					<description>This is very nice.

 Here with  this AJAX,I think no more secure in if our Data has more importance</description>
		<content:encoded><![CDATA[<p>This is very nice.</p>
<p> Here with  this AJAX,I think no more secure in if our Data has more importance
</p>
]]></content:encoded>
				</item>
	<item>
		<title>by: Amjith PS</title>
		<link>http://phpit.net/article/ajax-php-without-xmlhttprequest/#comment-8683</link>
		<pubDate>Mon, 24 Jul 2006 09:48:06 +0000</pubDate>
		<guid>http://phpit.net/article/ajax-php-without-xmlhttprequest/#comment-8683</guid>
					<description>Good.., Cool Performance.that is what Ajax compained with the PHP i feel., thanks for the code</description>
		<content:encoded><![CDATA[<p>Good.., Cool Performance.that is what Ajax compained with the PHP i feel., thanks for the code
</p>
]]></content:encoded>
				</item>
	<item>
		<title>by: Irken SSJ4 Goku</title>
		<link>http://phpit.net/article/ajax-php-without-xmlhttprequest/#comment-8496</link>
		<pubDate>Sat, 22 Jul 2006 16:41:07 +0000</pubDate>
		<guid>http://phpit.net/article/ajax-php-without-xmlhttprequest/#comment-8496</guid>
					<description>hello, everybody.  that's a working example of ajax javascript code without XmlHttpRequest...  and ready to go! (copy, paste, personalization, plug and play).  it's under development...  Version 0.9.1. See at http://ajaxextended.com/</description>
		<content:encoded><![CDATA[<p>hello, everybody.  that&#8217;s a working example of ajax javascript code without XmlHttpRequest&#8230;  and ready to go! (copy, paste, personalization, plug and play).  it&#8217;s under development&#8230;  Version 0.9.1. See at <a href='http://ajaxextended.com/' rel='nofollow'>http://ajaxextended.com/</a>
</p>
]]></content:encoded>
				</item>
	<item>
		<title>by: R. Mullen</title>
		<link>http://phpit.net/article/ajax-php-without-xmlhttprequest/#comment-8369</link>
		<pubDate>Fri, 21 Jul 2006 15:30:57 +0000</pubDate>
		<guid>http://phpit.net/article/ajax-php-without-xmlhttprequest/#comment-8369</guid>
					<description>Awesome, can't wait to test it out. 

Anyhoo, I think that AJAX *thinking* is much more important than whether or not XML is used. I spent hours on XML back in 1995, thinking it was the greatest thing since sliced bread and haven't used it other than to play around.

Even though folks in big companies use it, I suspect MOST php programmers don't code XML any more than they use regular expressions: they leave it to the experts and only want to know what gets exposed to their PHP code. 

I use MySQL, and love it, but I also think there's a use for integrating something totally free like Firebird into an application...in smaller apps, therefore, techniques like this may be more useful than XML. To me, that's still WAMP or open source *thinking*.

So, I appreciate this article because it focuses on asynchronicity,--i.e. the user experience, rather than being doctrinaire about the geek tools used to achieve it. 

Thank goodness the JavaScript Bible is still on the shelf!</description>
		<content:encoded><![CDATA[<p>Awesome, can&#8217;t wait to test it out. </p>
<p>Anyhoo, I think that AJAX *thinking* is much more important than whether or not XML is used. I spent hours on XML back in 1995, thinking it was the greatest thing since sliced bread and haven&#8217;t used it other than to play around.</p>
<p>Even though folks in big companies use it, I suspect MOST php programmers don&#8217;t code XML any more than they use regular expressions: they leave it to the experts and only want to know what gets exposed to their PHP code. </p>
<p>I use MySQL, and love it, but I also think there&#8217;s a use for integrating something totally free like Firebird into an application&#8230;in smaller apps, therefore, techniques like this may be more useful than XML. To me, that&#8217;s still WAMP or open source *thinking*.</p>
<p>So, I appreciate this article because it focuses on asynchronicity,&#8211;i.e. the user experience, rather than being doctrinaire about the geek tools used to achieve it. </p>
<p>Thank goodness the JavaScript Bible is still on the shelf!
</p>
]]></content:encoded>
				</item>
</channel>
</rss>
