<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Coder Circle &#187; Ajax</title>
	<atom:link href="http://www.codercircle.com/tag/ajax/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.codercircle.com</link>
	<description>Your Path for Knowledge to Wisdom</description>
	<lastBuildDate>Tue, 04 May 2010 01:26:21 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>AJAX GET IN PHP</title>
		<link>http://www.codercircle.com/scripts/ajax_get_in_php/</link>
		<comments>http://www.codercircle.com/scripts/ajax_get_in_php/#comments</comments>
		<pubDate>Thu, 19 Jun 2008 02:14:05 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Scripts]]></category>
		<category><![CDATA[Ajax]]></category>

		<guid isPermaLink="false">http://www.codercircle.com/index.php/2008/06/19/ajax_get_in_php/</guid>
		<description><![CDATA[var http_request = false;
function makePOSTRequest(url) {
http_request = false;
if (window.XMLHttpRequest) { // Mozilla, Safari,&#8230;
http_request = new XMLHttpRequest();
if (http_request.overrideMimeType) {
// set type accordingly to anticipated content type
//http_request.overrideMimeType(&#8216;text/xml&#8217;);
http_request.overrideMimeType(&#8216;text/html&#8217;);
}
} else if (window.ActiveXObject) { // IE
try {
http_request = new ActiveXObject(&#8220;Msxml2.XMLHTTP&#8221;);
} catch (e) {
try {
http_request = new ActiveXObject(&#8220;Microsoft.XMLHTTP&#8221;);
} catch (e) {}
}
}
if (!http_request) {
alert(&#8216;Cannot create XMLHTTP instance&#8217;);
return false;
}
http_request.onreadystatechange = alertContents;
http_request.open(&#8216;GET&#8217;, url, true);
http_request.send(null);
}
function [...]]]></description>
		<wfw:commentRss>http://www.codercircle.com/scripts/ajax_get_in_php/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How TO Handle Ajax POST With PHP</title>
		<link>http://www.codercircle.com/scripts/how_to_handle_ajax_post_with_php/</link>
		<comments>http://www.codercircle.com/scripts/how_to_handle_ajax_post_with_php/#comments</comments>
		<pubDate>Thu, 19 Jun 2008 02:13:51 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Scripts]]></category>
		<category><![CDATA[Advanced Javascript]]></category>
		<category><![CDATA[Ajax]]></category>
		<category><![CDATA[Ajax Post]]></category>
		<category><![CDATA[Cross Browser AJAX]]></category>

		<guid isPermaLink="false">http://www.codercircle.com/index.php/2008/06/19/how_to_handle_ajax_post_with_php/</guid>
		<description><![CDATA[ var http_request = false;
function makePOSTRequest(url, parameters) {
http_request = false;
if (window.XMLHttpRequest) { // Mozilla, Safari,&#8230;
http_request = new XMLHttpRequest();
if (http_request.overrideMimeType) {
// set type accordingly to anticipated content type
//http_request.overrideMimeType(&#8216;text/xml&#8217;);
http_request.overrideMimeType(&#8216;text/html&#8217;);
}
} else if (window.ActiveXObject) { // IE
try {
http_request = new ActiveXObject(&#8220;Msxml2.XMLHTTP&#8221;);
} catch (e) {
try {
http_request = new ActiveXObject(&#8220;Microsoft.XMLHTTP&#8221;);
} catch (e) {}
}
}
if (!http_request) {
alert(&#8216;Cannot create XMLHTTP instance&#8217;);
return false;
}
http_request.onreadystatechange = alertContents;
http_request.open(&#8216;POST&#8217;, [...]]]></description>
		<wfw:commentRss>http://www.codercircle.com/scripts/how_to_handle_ajax_post_with_php/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
