<?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; Scripts</title>
	<atom:link href="http://www.codercircle.com/category/scripts/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>A Databse Handling Class In Php</title>
		<link>http://www.codercircle.com/scripts/a-databse-handling-class-in-php/</link>
		<comments>http://www.codercircle.com/scripts/a-databse-handling-class-in-php/#comments</comments>
		<pubDate>Wed, 12 Aug 2009 12:50:39 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Scripts]]></category>
		<category><![CDATA[dbhandler class]]></category>
		<category><![CDATA[RAD]]></category>
		<category><![CDATA[Rapid Application Development tool]]></category>

		<guid isPermaLink="false">http://www.codercircle.com/?p=58</guid>
		<description><![CDATA[Now this is the age of RAD (Rapid App Development Tool). To run faster in web development thins class may help you. This is simply a DBHANDLER class .
We suggest you to use the DBHANDLER Class and find its amazing potential in the modern age that is primarily governed by Rapid Application Development Tools.
class __dbConfigSys
{
var [...]]]></description>
		<wfw:commentRss>http://www.codercircle.com/scripts/a-databse-handling-class-in-php/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Cross Browser Window &#8211; Open In Javascript</title>
		<link>http://www.codercircle.com/scripts/cross_browser_windowopen_in_javascript/</link>
		<comments>http://www.codercircle.com/scripts/cross_browser_windowopen_in_javascript/#comments</comments>
		<pubDate>Fri, 13 Feb 2009 04:30:06 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Scripts]]></category>
		<category><![CDATA[cross browser scripts]]></category>
		<category><![CDATA[java scripts]]></category>
		<category><![CDATA[javascripts]]></category>

		<guid isPermaLink="false">http://www.codercircle.com/index.php/2009/02/13/cross_browser_windowopen_in_javascript/</guid>
		<description><![CDATA[Now a days, browser dependent scripts like javascript create problems due to the varieties of clients and versions of different browsers. So, the programmers or the web developers should be alert to implement such scripts on web. The scripts should be necessarily cross browser compatible &#8230;..
Check the simple window.open function&#8230;.
var myPopupWindow = &#8221;;
function openPopupWindow(url)
{
//If it [...]]]></description>
		<wfw:commentRss>http://www.codercircle.com/scripts/cross_browser_windowopen_in_javascript/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>WORKING WITH REST</title>
		<link>http://www.codercircle.com/scripts/working_with_rest/</link>
		<comments>http://www.codercircle.com/scripts/working_with_rest/#comments</comments>
		<pubDate>Thu, 19 Jun 2008 02:14:21 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Scripts]]></category>
		<category><![CDATA[rest]]></category>

		<guid isPermaLink="false">http://www.codercircle.com/index.php/2008/06/19/working_with_rest/</guid>
		<description><![CDATA[rest-client.php
&#60;?
$rs=&#8221;http://localhost/rest/rest-server.php&#8221;;
$qs=&#8221;";
$parray=array(&#8216;amount&#8217;=&#62;&#8221;15.00&#8243;);
foreach($parray as $par=&#62;$value){
$qs=$qs.&#8221;$par=&#8221;.urlencode($value).&#8221;&#38;&#8221;; }
$uri=&#8221;$rs?$qs&#8221; . &#8220;aid=01&#8243;;
echo $qs . &#8220;&#60;br&#62;&#8221; . $uri . &#8220;&#60;br&#62;&#8221;;
$cobj=curl_init($uri);
curl_setopt($cobj,CURLOPT_RETURNTRANSFER,1);
$xml=curl_exec($cobj);
curl_close($cobj);
echo htmlspecialchars($xml);
?&#62;
rest-server.php
&#60;?
$amount=$_GET["amount"];
if ($_GET['aid']!=&#8221;010915780&#8243;)
{
echo &#8220;Invalid A ID&#8221;;
}
else
{
$taxcalc=$amount;
echo &#8220;&#60;?xml version=\&#8221;1.0\&#8221;?&#62;&#8221;;
echo &#8220;&#60;taxinfo&#62;&#8221;;
echo &#8220;&#60;result&#62;&#8221;.$taxcalc.&#8221;&#60;/result&#62;&#8221;;
echo &#8220;&#60;result&#62;&#8221;.$taxcalc * 20 .&#8221;&#60;/result&#62;&#8221;;
echo &#8220;&#60;/taxinfo&#62;&#8221;;
}
?&#62;
Test It.
]]></description>
		<wfw:commentRss>http://www.codercircle.com/scripts/working_with_rest/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<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>
