<?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"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Get a taste of AJAX with PHP</title>
	<atom:link href="http://marianoiglesias.com.ar/php/get-a-taste-of-ajax-with-php/feed/" rel="self" type="application/rss+xml" />
	<link>http://marianoiglesias.com.ar/php/get-a-taste-of-ajax-with-php/</link>
	<description>A glimpse at a coder&#039;s troubled mind</description>
	<lastBuildDate>Wed, 30 Jun 2010 11:12:52 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
	<item>
		<title>By: stolen [Visitor]</title>
		<link>http://marianoiglesias.com.ar/php/get-a-taste-of-ajax-with-php/comment-page-1/#comment-194</link>
		<dc:creator>stolen [Visitor]</dc:creator>
		<pubDate>Mon, 09 Nov 2009 08:20:00 +0000</pubDate>
		<guid isPermaLink="false">http://marianoiglesias.com.ar/1/get-a-taste-of-ajax-with-php/#comment-194</guid>
		<description>hi to everybody, pls help me for this problem, i m new in php.....&lt;br /&gt;
&lt;br /&gt;
i want show message in this ajax function&lt;br /&gt;
function saveClass($className)&lt;br /&gt;
{&lt;br /&gt;
global $db_obj;&lt;br /&gt;
$objResponse = new xajaxResponse();&lt;br /&gt;
$mess = &#039;&#039;;&lt;br /&gt;
&lt;br /&gt;
$sql=&quot;select * from class where classname=&#039;&quot;.$className.&quot;&#039;&quot;;&lt;br /&gt;
$rres = $db_obj-&gt;query($sql);&lt;br /&gt;
if(mysql_num_rows($rres )&gt;0)&lt;br /&gt;
{&lt;br /&gt;
//i want show message here&lt;br /&gt;
}&lt;br /&gt;
else&lt;br /&gt;
{&lt;br /&gt;
///unset($_SESSION[&#039;alert&#039;]);&lt;br /&gt;
$_SESSION[&#039;alert&#039;]= &quot; &quot;; &lt;br /&gt;
$sql =&quot;insert into class (className) values(&#039;&quot;.$className.&quot;&#039;)&quot;;&lt;br /&gt;
$insert_user_query = $db_obj-&gt;execute($sql);&lt;br /&gt;
return $objResponse-&gt;getXML();&lt;br /&gt;
}&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
$xajax-&gt;processRequests();&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
//pls help this problem
</description>
		<content:encoded><![CDATA[<p>hi to everybody, pls help me for this problem, i m new in php&#8230;..</p>
<p>i want show message in this ajax function<br />
function saveClass($className)<br />
{<br />
global $db_obj;<br />
$objResponse = new xajaxResponse();<br />
$mess = &#8221;;</p>
<p>$sql=&#8221;select * from class where classname=&#8217;&#8221;.$className.&#8221;&#8216;&#8221;;<br />
$rres = $db_obj->query($sql);<br />
if(mysql_num_rows($rres )>0)<br />
{<br />
//i want show message here<br />
}<br />
else<br />
{<br />
///unset($_SESSION['alert']);<br />
$_SESSION['alert']= &#8221; &#8220;; <br />
$sql =&#8221;insert into class (className) values(&#8216;&#8221;.$className.&#8221;&#8216;)&#8221;;<br />
$insert_user_query = $db_obj->execute($sql);<br />
return $objResponse->getXML();<br />
}<br />
}</p>
<p>$xajax->processRequests();</p>
<p>
//pls help this problem</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: mariano.iglesias [Member]</title>
		<link>http://marianoiglesias.com.ar/php/get-a-taste-of-ajax-with-php/comment-page-1/#comment-193</link>
		<dc:creator>mariano.iglesias [Member]</dc:creator>
		<pubDate>Mon, 14 Sep 2009 09:55:00 +0000</pubDate>
		<guid isPermaLink="false">http://marianoiglesias.com.ar/1/get-a-taste-of-ajax-with-php/#comment-193</guid>
		<description>@Eva:&lt;br /&gt;
&lt;br /&gt;
This is a very old post (4+ years) so I really don&#039;t have the source code I used back then.&lt;br /&gt;
&lt;br /&gt;
These days I recommend to anyone who wants to develop PHP based applications to use a framework, such as CakePHP:&lt;br /&gt;
&lt;br /&gt;
http://www.cakephp.org&lt;br /&gt;
&lt;br /&gt;
It greatly simplifies the whole development cycle.&lt;br /&gt;
&lt;br /&gt;
You should try it out.
</description>
		<content:encoded><![CDATA[<p>@Eva:</p>
<p>This is a very old post (4+ years) so I really don&#8217;t have the source code I used back then.</p>
<p>These days I recommend to anyone who wants to develop PHP based applications to use a framework, such as CakePHP:</p>
<p><a href="http://www.cakephp.org" rel="nofollow">http://www.cakephp.org</a></p>
<p>It greatly simplifies the whole development cycle.</p>
<p>You should try it out.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Eva [Visitor]</title>
		<link>http://marianoiglesias.com.ar/php/get-a-taste-of-ajax-with-php/comment-page-1/#comment-192</link>
		<dc:creator>Eva [Visitor]</dc:creator>
		<pubDate>Mon, 14 Sep 2009 06:51:00 +0000</pubDate>
		<guid isPermaLink="false">http://marianoiglesias.com.ar/1/get-a-taste-of-ajax-with-php/#comment-192</guid>
		<description>Hi, I&#039;m beginner with PHP. I just downloaded xajax.ini.php files and your example code. it can not work, and there is no error. I don&#039;t know why. Can you give the entire code including the php files that you used. Thank you very much.&lt;br /&gt;
Best wishes.
</description>
		<content:encoded><![CDATA[<p>Hi, I&#8217;m beginner with PHP. I just downloaded xajax.ini.php files and your example code. it can not work, and there is no error. I don&#8217;t know why. Can you give the entire code including the php files that you used. Thank you very much.<br />
Best wishes.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Diego Juritz [Visitor]</title>
		<link>http://marianoiglesias.com.ar/php/get-a-taste-of-ajax-with-php/comment-page-1/#comment-191</link>
		<dc:creator>Diego Juritz [Visitor]</dc:creator>
		<pubDate>Tue, 25 Jul 2006 11:50:00 +0000</pubDate>
		<guid isPermaLink="false">http://marianoiglesias.com.ar/1/get-a-taste-of-ajax-with-php/#comment-191</guid>
		<description>Mariano: useful as usual!&lt;br /&gt;
Great example.&lt;br /&gt;
I had tried it and it worked!&lt;br /&gt;
Thanks!
</description>
		<content:encoded><![CDATA[<p>Mariano: useful as usual!<br />
Great example.<br />
I had tried it and it worked!<br />
Thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: elvisman [Visitor]</title>
		<link>http://marianoiglesias.com.ar/php/get-a-taste-of-ajax-with-php/comment-page-1/#comment-190</link>
		<dc:creator>elvisman [Visitor]</dc:creator>
		<pubDate>Thu, 08 Jun 2006 18:20:00 +0000</pubDate>
		<guid isPermaLink="false">http://marianoiglesias.com.ar/1/get-a-taste-of-ajax-with-php/#comment-190</guid>
		<description>I&#039;m not sure if ajax is a technology to be followed... check this:&lt;br /&gt;
http://weblogs.java.net/blog/evanx/archive/2006/05/swing_trounces.html
</description>
		<content:encoded><![CDATA[<p>I&#8217;m not sure if ajax is a technology to be followed&#8230; check this:<br />
<a href="http://weblogs.java.net/blog/evanx/archive/2006/05/swing_trounces.html" rel="nofollow">http://weblogs.java.net/blog/evanx/archive/2006/05/swing_trounces.html</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: derek [Visitor]</title>
		<link>http://marianoiglesias.com.ar/php/get-a-taste-of-ajax-with-php/comment-page-1/#comment-189</link>
		<dc:creator>derek [Visitor]</dc:creator>
		<pubDate>Fri, 12 May 2006 11:28:00 +0000</pubDate>
		<guid isPermaLink="false">http://marianoiglesias.com.ar/1/get-a-taste-of-ajax-with-php/#comment-189</guid>
		<description>Very interesting and professional site! Good luck!
</description>
		<content:encoded><![CDATA[<p>Very interesting and professional site! Good luck!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: S&#195;&#402;&#194;&#169;rgio Berlotto [Visitor]</title>
		<link>http://marianoiglesias.com.ar/php/get-a-taste-of-ajax-with-php/comment-page-1/#comment-188</link>
		<dc:creator>S&#195;&#402;&#194;&#169;rgio Berlotto [Visitor]</dc:creator>
		<pubDate>Thu, 19 Jan 2006 14:31:00 +0000</pubDate>
		<guid isPermaLink="false">http://marianoiglesias.com.ar/1/get-a-taste-of-ajax-with-php/#comment-188</guid>
		<description>Great syntax higlhither...&lt;br /&gt;
So good !&lt;br /&gt;
&lt;br /&gt;
I will install on my site...&lt;br /&gt;
&lt;br /&gt;
</description>
		<content:encoded><![CDATA[<p>Great syntax higlhither&#8230;<br />
So good !</p>
<p>I will install on my site&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Gaurav Arora [Visitor]</title>
		<link>http://marianoiglesias.com.ar/php/get-a-taste-of-ajax-with-php/comment-page-1/#comment-187</link>
		<dc:creator>Gaurav Arora [Visitor]</dc:creator>
		<pubDate>Wed, 04 Jan 2006 22:35:00 +0000</pubDate>
		<guid isPermaLink="false">http://marianoiglesias.com.ar/1/get-a-taste-of-ajax-with-php/#comment-187</guid>
		<description>Thank you so much for the article and the example. I had to make a signup form for a client which pulled data from a database of countries, states and cities. Your example was most useful...infact it was THE only thing I needed to read to accomplish the task.&lt;br /&gt;
&lt;br /&gt;
Once again, thanks a lot.
</description>
		<content:encoded><![CDATA[<p>Thank you so much for the article and the example. I had to make a signup form for a client which pulled data from a database of countries, states and cities. Your example was most useful&#8230;infact it was THE only thing I needed to read to accomplish the task.</p>
<p>Once again, thanks a lot.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Page Caching using disk
Database Caching 10/29 queries in 0.078 seconds using disk

Served from: marianoiglesias.com.ar @ 2010-09-05 10:03:01 -->