<?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>qsopht &#187; code</title>
	<atom:link href="http://www.qsopht.com/wordpress/category/code/feed" rel="self" type="application/rss+xml" />
	<link>http://www.qsopht.com/wordpress</link>
	<description>Tech, Web, and Stupid Stuff</description>
	<lastBuildDate>Fri, 13 Feb 2009 14:51:50 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Simple Javascript to Limit Form Field lengths</title>
		<link>http://www.qsopht.com/wordpress/2007/10/24/simple-javascript-to-limit-form-field-lengths</link>
		<comments>http://www.qsopht.com/wordpress/2007/10/24/simple-javascript-to-limit-form-field-lengths#comments</comments>
		<pubDate>Thu, 25 Oct 2007 03:33:24 +0000</pubDate>
		<dc:creator>Sam</dc:creator>
				<category><![CDATA[code]]></category>

		<guid isPermaLink="false">http://www.qsopht.com/wordpress/2007/10/24/simple-javascript-to-limit-form-field-lengths/</guid>
		<description><![CDATA[The following javascript function does two things: Checks the number of characters within a given form field (input textbox or textarea) and updates a div or span element. Restricts the number of characters to the given maxlength. &#160; function checkLength &#40;elemId, showId, totalChars&#41; &#123; &#160; &#160; &#160;var elem = document.getElementById&#40;elemId&#41;; &#160; &#160; &#160;var elemShow = [...]]]></description>
		<wfw:commentRss>http://www.qsopht.com/wordpress/2007/10/24/simple-javascript-to-limit-form-field-lengths/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Create a Simple User Login System with PHP and MySQL</title>
		<link>http://www.qsopht.com/wordpress/2007/07/14/create-a-user-login-system-with-php-and-mysql</link>
		<comments>http://www.qsopht.com/wordpress/2007/07/14/create-a-user-login-system-with-php-and-mysql#comments</comments>
		<pubDate>Sun, 15 Jul 2007 04:23:28 +0000</pubDate>
		<dc:creator>Sam</dc:creator>
				<category><![CDATA[code]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://www.qsopht.com/wordpress/2007/07/14/create-a-user-login-system-with-php-and-mysql/</guid>
		<description><![CDATA[First &#8211; The Demo Here is all the code for the page &#8211; phplogin.php &#160; &#60;?php &#160; &#160; &#160;session_start&#40;&#41;; &#160; &#160; &#160; &#160; &#160; &#160;if &#40;$_SESSION&#91;&#8216;loggedin&#8217;&#93; == 1&#41; &#160; &#160; &#160;&#160; &#160; &#160;header&#40;&#34;Location: loginsuccess.php&#34;&#41;; &#160; &#160; &#160;&#160; &#160; &#160; &#160; &#160; &#160;if&#40;isset&#40; $Submit &#41;&#41; &#160; &#160; &#160;&#123; &#160; &#160; &#160;&#160; &#160; &#160;$username=&#34;username&#34;; &#160; &#160; &#160;&#160; [...]]]></description>
		<wfw:commentRss>http://www.qsopht.com/wordpress/2007/07/14/create-a-user-login-system-with-php-and-mysql/feed</wfw:commentRss>
		<slash:comments>17</slash:comments>
		</item>
		<item>
		<title>ajax javascript function to create XMLHttpRequest object</title>
		<link>http://www.qsopht.com/wordpress/2007/02/18/ajax-javascript-function-to-create-xmlhttprequest-object</link>
		<comments>http://www.qsopht.com/wordpress/2007/02/18/ajax-javascript-function-to-create-xmlhttprequest-object#comments</comments>
		<pubDate>Sun, 18 Feb 2007 13:11:32 +0000</pubDate>
		<dc:creator>Sam</dc:creator>
				<category><![CDATA[ajax]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[javascript]]></category>

		<guid isPermaLink="false">http://www.qsopht.com/wordpress/2007/02/18/ajax-javascript-function-to-create-xmlhttprequest-object/</guid>
		<description><![CDATA[function getXMLHttp&#40;&#41; &#123; &#160; &#160; var xmlHttp; &#160; &#160; // Firefox, Opera 8.0+, Safari &#160; &#160; try &#123; xmlHttp=new XMLHttpRequest&#40;&#41;; &#125; &#160; &#160; // Internet Explorer &#160; &#160; catch &#40;e&#41; &#160; &#160; &#123; &#160; &#160; &#160; &#160; try &#123; xmlHttp=new ActiveXObject&#40;&#34;Msxml2.XMLHTTP&#34;&#41;; &#125; &#160; &#160; &#160; &#160; //Older IE? &#160; &#160; &#160; &#160; catch &#40;e&#41; &#160; [...]]]></description>
		<wfw:commentRss>http://www.qsopht.com/wordpress/2007/02/18/ajax-javascript-function-to-create-xmlhttprequest-object/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>javascript function to toggle visibility of webpage elements</title>
		<link>http://www.qsopht.com/wordpress/2007/02/17/toggle-visibility-of-webpage-elements</link>
		<comments>http://www.qsopht.com/wordpress/2007/02/17/toggle-visibility-of-webpage-elements#comments</comments>
		<pubDate>Sat, 17 Feb 2007 05:20:13 +0000</pubDate>
		<dc:creator>Sam</dc:creator>
				<category><![CDATA[code]]></category>

		<guid isPermaLink="false">http://www.qsopht.com/wordpress/2007/02/17/toggle-visibility-of-webpage-elements/</guid>
		<description><![CDATA[&#160; function toggleDisplay&#40;id&#41; &#123; &#160; &#160; &#160; &#160; var oLayer; &#160; &#160; &#160; &#160; oLayer = document.getElementById&#40;id&#41;; &#160; &#160; &#160; &#160; if &#40;oLayer.style.visibility == &#34;visible&#34; &#124;&#124; oLayer.style.display == &#34;block&#34;&#41; &#160; &#160; &#160; &#160; &#123; &#160; &#160; &#160; &#160; &#160; &#160; &#160;oLayer.style.visibility = &#34;hidden&#34;; &#160; &#160; &#160; &#160; &#160; &#160; &#160;oLayer.style.display = &#34;none&#34;; &#160; &#160; &#160; [...]]]></description>
		<wfw:commentRss>http://www.qsopht.com/wordpress/2007/02/17/toggle-visibility-of-webpage-elements/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

