<?xml version="1.0" encoding="UTF-8"?><!-- generator="wordpress/2.0.7" -->
<rss version="2.0" 
	xmlns:content="http://purl.org/rss/1.0/modules/content/">
<channel>
	<title>Comments for Ajax Tutorial : Ajax Help and Tutorials</title>
	<link>http://www.ajaxtutorial.net</link>
	<description>Helping newbies learn AJAX with Tutorials</description>
	<pubDate>Sat, 10 May 2008 02:04:25 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.0.7</generator>

	<item>
		<title>Comment on Simple Ajax using Prototype. Part 1 by banjojim</title>
		<link>http://www.ajaxtutorial.net/index.php/2006/11/29/simple-ajax-using-prototype-part-1/#comment-201</link>
		<pubDate>Sun, 28 Jan 2007 00:36:17 +0000</pubDate>
		<guid>http://www.ajaxtutorial.net/index.php/2006/11/29/simple-ajax-using-prototype-part-1/#comment-201</guid>
					<description>I'm running your example but the return value is the following:

if(isset($_GET[ï¿½valï¿½])) { echo ï¿½You entered: ï¿½.$_GET[ï¿½valï¿½]; }

It seems like PHP isn't parsing the script. I know PHP is working because php phpinfo() works fine. Any suggestions? I'm sure it's a PHP problem but I'm not sure how to continue.</description>
		<content:encoded><![CDATA[<p>I&#8217;m running your example but the return value is the following:</p>
<p>if(isset($_GET[ï¿½valï¿½])) { echo ï¿½You entered: ï¿½.$_GET[ï¿½valï¿½]; }</p>
<p>It seems like PHP isn&#8217;t parsing the script. I know PHP is working because php phpinfo() works fine. Any suggestions? I&#8217;m sure it&#8217;s a PHP problem but I&#8217;m not sure how to continue.
</p>
]]></content:encoded>
				</item>
	<item>
		<title>Comment on Simple Ajax using Prototype. Part 1 by Stuart</title>
		<link>http://www.ajaxtutorial.net/index.php/2006/11/29/simple-ajax-using-prototype-part-1/#comment-200</link>
		<pubDate>Wed, 24 Jan 2007 23:12:33 +0000</pubDate>
		<guid>http://www.ajaxtutorial.net/index.php/2006/11/29/simple-ajax-using-prototype-part-1/#comment-200</guid>
					<description>beachbumdrums,

I'm not to sure why you get this error. If possible can you run it with FF2 with the Firebug extension? this will give you a better indication of where exactly the error is coming from.

Also, I do not know if this makes any difference, but try changing the ` (funny single quotes which wordpress generates) to proper single quotes. Sometime wordpress changes the code a little.

Finally you could take out the F() function, and place:
&lt; input type="button" value="GO" onClick="ajaxRequest('parse.php', 'val='+document.getElementById('myval').value)" &gt;

Good luck.</description>
		<content:encoded><![CDATA[<p>beachbumdrums,</p>
<p>I&#8217;m not to sure why you get this error. If possible can you run it with FF2 with the Firebug extension? this will give you a better indication of where exactly the error is coming from.</p>
<p>Also, I do not know if this makes any difference, but try changing the ` (funny single quotes which wordpress generates) to proper single quotes. Sometime wordpress changes the code a little.</p>
<p>Finally you could take out the F() function, and place:<br />
< input type="button" value="GO" onClick="ajaxRequest('parse.php', 'val='+document.getElementById('myval').value)" ></p>
<p>Good luck.
</p>
]]></content:encoded>
				</item>
	<item>
		<title>Comment on Simple Ajax using Prototype. Part 1 by beachbumdrums</title>
		<link>http://www.ajaxtutorial.net/index.php/2006/11/29/simple-ajax-using-prototype-part-1/#comment-198</link>
		<pubDate>Wed, 24 Jan 2007 20:05:55 +0000</pubDate>
		<guid>http://www.ajaxtutorial.net/index.php/2006/11/29/simple-ajax-using-prototype-part-1/#comment-198</guid>
					<description>Please help...

I applaud this tutorial. I am a php coder who needs a simple intro to ajax like this in order to build upon.

However, I get an error message that I can not resolve. "object expected" on the input button line. How do I resolve this?

Thanks in advance! I look forward to more tutorials.</description>
		<content:encoded><![CDATA[<p>Please help&#8230;</p>
<p>I applaud this tutorial. I am a php coder who needs a simple intro to ajax like this in order to build upon.</p>
<p>However, I get an error message that I can not resolve. &#8220;object expected&#8221; on the input button line. How do I resolve this?</p>
<p>Thanks in advance! I look forward to more tutorials.
</p>
]]></content:encoded>
				</item>
	<item>
		<title>Comment on Simple Ajax using Prototype. Part 2 by Stuart</title>
		<link>http://www.ajaxtutorial.net/index.php/2006/11/30/simple-ajax-using-prototype-part-2/#comment-139</link>
		<pubDate>Mon, 04 Dec 2006 22:47:31 +0000</pubDate>
		<guid>http://www.ajaxtutorial.net/index.php/2006/11/30/simple-ajax-using-prototype-part-2/#comment-139</guid>
					<description>From what I understand, ajax.Updater is used to request updated info from a Server Script, i.e. you do not send a request, you only receive a reply. But ajax.Request is used to send values to a Server Script and also receives a reply (if required). It really depends on what you want to do.</description>
		<content:encoded><![CDATA[<p>From what I understand, ajax.Updater is used to request updated info from a Server Script, i.e. you do not send a request, you only receive a reply. But ajax.Request is used to send values to a Server Script and also receives a reply (if required). It really depends on what you want to do.
</p>
]]></content:encoded>
				</item>
	<item>
		<title>Comment on Simple Ajax using Prototype. Part 2 by tom</title>
		<link>http://www.ajaxtutorial.net/index.php/2006/11/30/simple-ajax-using-prototype-part-2/#comment-138</link>
		<pubDate>Mon, 04 Dec 2006 11:24:32 +0000</pubDate>
		<guid>http://www.ajaxtutorial.net/index.php/2006/11/30/simple-ajax-using-prototype-part-2/#comment-138</guid>
					<description>Sorry, but I don't really get the difference between ajaxUpdater and ajaxRequest. What can be done with ajaxUpdater which can't be done with ajaxRequest? I've just used your ajaxRequest tutorial to create my first bit of ajax, thanks a lot for the help, very very handy. I built the ajax part in less than 20 min... without that tutorial, it would have probably taken me several hours.</description>
		<content:encoded><![CDATA[<p>Sorry, but I don&#8217;t really get the difference between ajaxUpdater and ajaxRequest. What can be done with ajaxUpdater which can&#8217;t be done with ajaxRequest? I&#8217;ve just used your ajaxRequest tutorial to create my first bit of ajax, thanks a lot for the help, very very handy. I built the ajax part in less than 20 min&#8230; without that tutorial, it would have probably taken me several hours.
</p>
]]></content:encoded>
				</item>
</channel>
</rss>
