<?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>Tutorials, Scripts, Technology and Interview Tips &#187; scripts</title>
	<atom:link href="http://mistonline.in/wp/tutorials/scripts/feed/" rel="self" type="application/rss+xml" />
	<link>http://mistonline.in/wp</link>
	<description>The One Stop Reference For Web Developers</description>
	<lastBuildDate>Tue, 24 Jan 2012 13:59:37 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3</generator>
		<item>
		<title>Count distinct records or values and display it using mysql and php</title>
		<link>http://mistonline.in/wp/count-distinct-records-or-values-and-display-it-using-mysql-and-php/</link>
		<comments>http://mistonline.in/wp/count-distinct-records-or-values-and-display-it-using-mysql-and-php/#comments</comments>
		<pubDate>Sun, 15 Jan 2012 08:42:30 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Mysql]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[scripts]]></category>

		<guid isPermaLink="false">http://mistonline.in/wp/?p=1612</guid>
		<description><![CDATA[This tutorial shows you how to count unique records with mysql and display it using php. Very simple to understand. This line count(&#60;COLUMN_NAME&#62;) AS count_me simply means that the count value is assigned to variable count_me and we can ECHO it using $row['count_me'] Complete code is displayed below. Here i am using connect.php which contains [...]]]></description>
		<wfw:commentRss>http://mistonline.in/wp/count-distinct-records-or-values-and-display-it-using-mysql-and-php/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Change webpage title dynamically using jquery</title>
		<link>http://mistonline.in/wp/change-webpage-title-dynamically-using-jquery/</link>
		<comments>http://mistonline.in/wp/change-webpage-title-dynamically-using-jquery/#comments</comments>
		<pubDate>Fri, 18 Nov 2011 16:33:22 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Jquery]]></category>
		<category><![CDATA[scripts]]></category>

		<guid isPermaLink="false">http://mistonline.in/wp/?p=1588</guid>
		<description><![CDATA[This is a simple script that will change the webpage title dynamically using jquery. Customize it according to your requirement.Jquery knowledge is essential to understand the code below. Any doubts do get back to me Happy Coding!!!! &#60;title&#62;Title changing script:Mistonline.in, Webpage before clicking below&#60;/title&#62; &#60;script type=&#34;text/javascript&#34; src=&#34;http://demo.mistonline.in/jquery-1.2.3.min.js&#34;&#62;&#60;/script&#62; &#60;script type=&#34;text/javascript&#34;&#62; $(document).ready(function() { $(&#34;p&#34;).click(function(){ document.title = 'New [...]]]></description>
		<wfw:commentRss>http://mistonline.in/wp/change-webpage-title-dynamically-using-jquery/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Redirect webpage using php</title>
		<link>http://mistonline.in/wp/redirect-webpage-using-php/</link>
		<comments>http://mistonline.in/wp/redirect-webpage-using-php/#comments</comments>
		<pubDate>Fri, 18 Nov 2011 15:46:19 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[scripts]]></category>

		<guid isPermaLink="false">http://mistonline.in/wp/?p=1584</guid>
		<description><![CDATA[Redirect webpage after a specific time delay using php.We have html code for redirecting one webpage to another.But here we have php for doing the same. We can even give a delay of our choice inside the code. Grab the code here. &#60; ?php header(&#34;refresh:3;url=redirected.htm&#34;);?&#62; Put the above code in any webpage you need the [...]]]></description>
		<wfw:commentRss>http://mistonline.in/wp/redirect-webpage-using-php/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Zoom in and zoom out image using jquery</title>
		<link>http://mistonline.in/wp/zoom-in-and-zoom-out-image-using-jquery/</link>
		<comments>http://mistonline.in/wp/zoom-in-and-zoom-out-image-using-jquery/#comments</comments>
		<pubDate>Wed, 16 Nov 2011 15:10:25 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Jquery]]></category>
		<category><![CDATA[scripts]]></category>

		<guid isPermaLink="false">http://mistonline.in/wp/?p=1581</guid>
		<description><![CDATA[This scripts demonstrates how to Zoom in and zoom out image using jquery when you move mouse over the image. &#60;title&#62;Move mouse on image to Zoom In and Zoom Out&#60;/title&#62; &#60;script type=&#34;text/javascript&#34; src=&#34;http://demo.mistonline.in/jquery-1.2.3.min.js&#34;&#62;&#60;/script&#62; &#60;script type=&#34;text/javascript&#34;&#62; $(document).ready(function(){ $('#img_car').width(200); $('#img_car').mouseover(function() { $(this).css(&#34;cursor&#34;,&#34;pointer&#34;); $(this).animate({width: &#34;360px&#34;}, 'slow'); }); $('#img_car').mouseout(function() { $(this).animate({width: &#34;200px&#34;}, 'slow'); }); }); &#60;/script&#62; &#60;h1&#62;Move mouse on [...]]]></description>
		<wfw:commentRss>http://mistonline.in/wp/zoom-in-and-zoom-out-image-using-jquery/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Read text file reverse using php</title>
		<link>http://mistonline.in/wp/read-text-file-reverse-using-php/</link>
		<comments>http://mistonline.in/wp/read-text-file-reverse-using-php/#comments</comments>
		<pubDate>Sun, 13 Nov 2011 08:57:06 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[scripts]]></category>

		<guid isPermaLink="false">http://mistonline.in/wp/?p=1578</guid>
		<description><![CDATA[Read text file reverse using php $file = file('text.txt'); $read_rev = array_reverse($file); $count=0; foreach ($read_rev as $dis_line) { print_r($dis_line); echo &#34;&#60;br /&#62;&#34;; } Demo Incoming search terms: contoh code javascript get data from listbox (1) php чтение файл reverse (1)]]></description>
		<wfw:commentRss>http://mistonline.in/wp/read-text-file-reverse-using-php/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Send mail to admin or website owner when ever the logs show 404 or 500 or 401 or 400 error codes</title>
		<link>http://mistonline.in/wp/send-mail-to-admin-or-website-owner-when-ever-the-logs-show-404-or-500-or-401-or-400-error-codes/</link>
		<comments>http://mistonline.in/wp/send-mail-to-admin-or-website-owner-when-ever-the-logs-show-404-or-500-or-401-or-400-error-codes/#comments</comments>
		<pubDate>Sun, 13 Nov 2011 08:45:41 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[scripts]]></category>

		<guid isPermaLink="false">http://mistonline.in/wp/?p=1572</guid>
		<description><![CDATA[Send an mail to admin or website owner when ever the logs show 404 or file not found error.This script can be used as a cron and is run on everyday basis to get all the details in your email.You can modify the code URI accordingly to get different error message details such as 404, [...]]]></description>
		<wfw:commentRss>http://mistonline.in/wp/send-mail-to-admin-or-website-owner-when-ever-the-logs-show-404-or-500-or-401-or-400-error-codes/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Date in title bar using php</title>
		<link>http://mistonline.in/wp/date-in-title-bar-using-php/</link>
		<comments>http://mistonline.in/wp/date-in-title-bar-using-php/#comments</comments>
		<pubDate>Sun, 13 Nov 2011 07:12:22 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[scripts]]></category>

		<guid isPermaLink="false">http://mistonline.in/wp/?p=1569</guid>
		<description><![CDATA[This is a simple script that appends date inside the html title tag. &#60;title&#62;Today is &#60; ?php print date(&#34;l&#34;); print(&#34;, &#34;); print date(&#34;d/M/y&#34;);?&#62;&#60;/title&#62; Incoming search terms: date in title bar using php (2) jewish clothing pictures admin php intitle:datalife engine (2) suicide girls pin up admin php intitle:datalife engine (2) php database tutorial using combobox [...]]]></description>
		<wfw:commentRss>http://mistonline.in/wp/date-in-title-bar-using-php/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Setup a smtp server on your localsystem or server using hmailserver and send email</title>
		<link>http://mistonline.in/wp/setup-a-smtp-server-on-your-localsystem-or-server-using-hmailserver-and-send-email/</link>
		<comments>http://mistonline.in/wp/setup-a-smtp-server-on-your-localsystem-or-server-using-hmailserver-and-send-email/#comments</comments>
		<pubDate>Wed, 26 Oct 2011 17:24:16 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[scripts]]></category>

		<guid isPermaLink="false">http://mistonline.in/wp/?p=1565</guid>
		<description><![CDATA[Setup a smtp server on the system, if you are running on windows use hmailserver and configure it and send any number of mails. DOWNLOAD HMAIL SERVER HERE &#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;a)Select the default settings that popup under installation window { DONT MODIFY ANYTHING JUST PRESS NEXT AND INSTALL IT } &#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;b)Once installed it will ask for a [...]]]></description>
		<wfw:commentRss>http://mistonline.in/wp/setup-a-smtp-server-on-your-localsystem-or-server-using-hmailserver-and-send-email/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Agree Before Entry Using Javascript</title>
		<link>http://mistonline.in/wp/agree-before-entry-using-javascript/</link>
		<comments>http://mistonline.in/wp/agree-before-entry-using-javascript/#comments</comments>
		<pubDate>Tue, 18 Oct 2011 16:15:32 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[JavaScripts]]></category>
		<category><![CDATA[scripts]]></category>
		<category><![CDATA[javascript]]></category>

		<guid isPermaLink="false">http://mistonline.in/wp/?p=1549</guid>
		<description><![CDATA[Agree before entry using Javascript,with button disable functionality,that means if you agree, you can enter your name. But, if you disagree, you will not be able to enter or edit your name. When you disagree, the box is &#8216;locked.&#8217; Useful if you require your visitors to accept a disclaimer before downloading software or visiting a [...]]]></description>
		<wfw:commentRss>http://mistonline.in/wp/agree-before-entry-using-javascript/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Find screen resolution and redirect the user using javascript</title>
		<link>http://mistonline.in/wp/find-screen-resolution-and-redirect-the-user-using-javascript/</link>
		<comments>http://mistonline.in/wp/find-screen-resolution-and-redirect-the-user-using-javascript/#comments</comments>
		<pubDate>Mon, 17 Oct 2011 20:09:11 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[JavaScripts]]></category>
		<category><![CDATA[scripts]]></category>
		<category><![CDATA[javascript]]></category>

		<guid isPermaLink="false">http://mistonline.in/wp/?p=1545</guid>
		<description><![CDATA[This script helps you to find screen resolution of a client or user and redirect to a webpage using simple &#60;script LANGUAGE=&#34;JavaScript&#34;&#62; function resolution_finder() { var url640x480 = &#34;http://www.yahoo.com&#34;; var url800x600 = &#34;http://www.googl.com&#34;; var url1024x768 = &#34;http://www.msn.com&#34;; if ((screen.width == 640) &#38;&#38; (screen.height == 480)) window.location.href= url640x480; else if ((screen.width == 800) &#38;&#38; (screen.height == [...]]]></description>
		<wfw:commentRss>http://mistonline.in/wp/find-screen-resolution-and-redirect-the-user-using-javascript/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Character Encoder And Decoder Using Javascript</title>
		<link>http://mistonline.in/wp/character-encoder-using-javascript/</link>
		<comments>http://mistonline.in/wp/character-encoder-using-javascript/#comments</comments>
		<pubDate>Mon, 17 Oct 2011 20:03:10 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[JavaScripts]]></category>
		<category><![CDATA[scripts]]></category>
		<category><![CDATA[javascript]]></category>

		<guid isPermaLink="false">http://mistonline.in/wp/?p=1541</guid>
		<description><![CDATA[This scripts encodes and decodes the character entered inside the textbox. Very useful for GET queries passed through URL.Encrypts a string by converting each character to it&#8217;s ASCII key code. Supports two-way encryption &#8211; from a string to the numeric code, or from the numeric code back to the string. &#60;script LANGUAGE=&#34;JavaScript&#34;&#62; var str_in; var [...]]]></description>
		<wfw:commentRss>http://mistonline.in/wp/character-encoder-using-javascript/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Output buffering using ob_start in php</title>
		<link>http://mistonline.in/wp/output-buffering-using-ob_start-in-php/</link>
		<comments>http://mistonline.in/wp/output-buffering-using-ob_start-in-php/#comments</comments>
		<pubDate>Sun, 16 Oct 2011 04:23:11 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[scripts]]></category>

		<guid isPermaLink="false">http://mistonline.in/wp/?p=1537</guid>
		<description><![CDATA[Output buffering using ob_start in php and saving it to a variable, this is a very good feature available in php mainly when we want to output and html data or php data ob_start(); //Turn on output buffering ?&#62; Get this link &#60;a href=&#34;http://www.mistonline.in&#34;&#62;output buffer&#60;/a&#62; &#60;div class=&#34;style&#34;&#62;Rest of html&#60;/div&#62; &#60;?php $get_html = ob_get_clean(); //copy current [...]]]></description>
		<wfw:commentRss>http://mistonline.in/wp/output-buffering-using-ob_start-in-php/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Get browser language using php</title>
		<link>http://mistonline.in/wp/get-browser-language-using-php/</link>
		<comments>http://mistonline.in/wp/get-browser-language-using-php/#comments</comments>
		<pubDate>Sun, 16 Oct 2011 04:16:33 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[scripts]]></category>

		<guid isPermaLink="false">http://mistonline.in/wp/?p=1533</guid>
		<description><![CDATA[In php you can get the language of your visitor, this is very helpful if you have many versions of your website for different languages. $language = substr($_SERVER['HTTP_ACCEPT_LANGUAGE'], 0, 2); echo &#34;The browser language is &#34;.$language; Incoming search terms: inurl php\mail:id= (1)]]></description>
		<wfw:commentRss>http://mistonline.in/wp/get-browser-language-using-php/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Find files inside a directory that starts with a specific string using php</title>
		<link>http://mistonline.in/wp/find-files-inside-a-directory-that-starts-with-a-specific-string-using-php/</link>
		<comments>http://mistonline.in/wp/find-files-inside-a-directory-that-starts-with-a-specific-string-using-php/#comments</comments>
		<pubDate>Wed, 31 Aug 2011 18:29:17 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[scripts]]></category>

		<guid isPermaLink="false">http://mistonline.in/wp/?p=1502</guid>
		<description><![CDATA[Find files inside a directory that starts with a specific string using php.This script will search for files that starts with a string [Whatever you give] inside the query string. For instance if the below script is saved inside a file say search_files.php then the script will work if you provide www..com/search_files.php?name=access_log $dir = &#34;logs&#34;; [...]]]></description>
		<wfw:commentRss>http://mistonline.in/wp/find-files-inside-a-directory-that-starts-with-a-specific-string-using-php/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Find the string and then the line number using php from text file</title>
		<link>http://mistonline.in/wp/find-the-string-and-then-the-line-number-using-php-from-text-file/</link>
		<comments>http://mistonline.in/wp/find-the-string-and-then-the-line-number-using-php-from-text-file/#comments</comments>
		<pubDate>Wed, 31 Aug 2011 18:22:55 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[scripts]]></category>

		<guid isPermaLink="false">http://mistonline.in/wp/?p=1499</guid>
		<description><![CDATA[Find the string and then the line number using php from text file or a text data base. In this we are searching a string named alan inside one of our log files. $searchString = 'alan'; $URL = &#34;logs/logs.txt_2011-08-10&#34;; $data = file_get_contents($URL); $data = explode(&#34;\n&#34;, $data); for ($line = 0; $line &#60; count($data); $line++) { [...]]]></description>
		<wfw:commentRss>http://mistonline.in/wp/find-the-string-and-then-the-line-number-using-php-from-text-file/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Display text file line by line and delete certain lines using php</title>
		<link>http://mistonline.in/wp/display-text-file-line-by-line-and-delete-certain-lines-using-php/</link>
		<comments>http://mistonline.in/wp/display-text-file-line-by-line-and-delete-certain-lines-using-php/#comments</comments>
		<pubDate>Tue, 30 Aug 2011 19:31:23 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[scripts]]></category>

		<guid isPermaLink="false">http://mistonline.in/wp/?p=1495</guid>
		<description><![CDATA[Display text file or text data base line by line and delete certain lines using php. Each line of the text file is read and a DELETE link is added along with it.Grab the script here. NOTE:-My text file name is mail_list.txt Create a file with name del.php and add the below code. Save it [...]]]></description>
		<wfw:commentRss>http://mistonline.in/wp/display-text-file-line-by-line-and-delete-certain-lines-using-php/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Randomly read and display values of an xml file using php</title>
		<link>http://mistonline.in/wp/randomly-read-and-display-values-of-an-xml-file-using-php/</link>
		<comments>http://mistonline.in/wp/randomly-read-and-display-values-of-an-xml-file-using-php/#comments</comments>
		<pubDate>Mon, 23 May 2011 18:10:55 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[perl]]></category>
		<category><![CDATA[scripts]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://mistonline.in/wp/?p=1430</guid>
		<description><![CDATA[This script will show you how to read and display the values of an xml file using php. My demo.xml looks like this &#60;message&#62;&#60;name&#62;Antonio Paulo/name&#62;&#60;website&#62;http://mistonline.in&#60;/website&#62;&#60;comment&#62;Good One&#60;/comment&#62;&#60;date&#62;1305127910&#60;/date&#62;&#60;user_ip&#62;2.241.68.95&#60;/user_ip&#62;&#60;user_agent&#62;Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/534.13 (KHTML, like Gecko) Chrome/9.0.597.98 Safari/534.13&#60;/user_agent&#62;&#60;spam&#62;0&#60;/spam&#62;&#60;/name&#62;&#60;/message&#62; Here i am just reading the Name and the Comment TAGS. &#60; ?php $xml = new SimpleXMLElement('demo.xml', [...]]]></description>
		<wfw:commentRss>http://mistonline.in/wp/randomly-read-and-display-values-of-an-xml-file-using-php/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Words Validation with Javascript</title>
		<link>http://mistonline.in/wp/words-validation-with-javascript/</link>
		<comments>http://mistonline.in/wp/words-validation-with-javascript/#comments</comments>
		<pubDate>Sat, 21 May 2011 20:33:23 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[JavaScripts]]></category>
		<category><![CDATA[scripts]]></category>
		<category><![CDATA[javascript]]></category>

		<guid isPermaLink="false">http://mistonline.in/wp/?p=308</guid>
		<description><![CDATA[Hi today i will explain you how to filter out inappropriate words from being updated or send from your website.This is simple javascript. badwords.js Contains javascript code. If you want add some more words in bad_words_array var bad_words_array=new Array("badword-1","badword-2","badword-3"); function badwords(txt) { var alert_arr=new Array; var alert_count=0; var compare_text=txt; for(var i=0; i&#60;bad_words_array.length; i++&#62;) { for(var [...]]]></description>
		<wfw:commentRss>http://mistonline.in/wp/words-validation-with-javascript/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>File System Reference In PHP</title>
		<link>http://mistonline.in/wp/file-system-reference-in-php/</link>
		<comments>http://mistonline.in/wp/file-system-reference-in-php/#comments</comments>
		<pubDate>Sat, 21 May 2011 08:33:41 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[scripts]]></category>

		<guid isPermaLink="false">http://mistonline.in/wp/?p=260</guid>
		<description><![CDATA[The unlink() function deletes a file. This function returns TRUE on success, or FALSE on failure. Syntax unlink(filename,context) Parameter Description filename Required. Specifies the file to delete Example &#60;?php $file = &#8220;newfile.txt&#8221;; if (!unlink($file)) { echo (&#8220;Error deleting $file&#8221;); } else { echo (&#8220;Deleted $file&#8221;); } ?&#62; Definition and Usage The rmdir() function removes an [...]]]></description>
		<wfw:commentRss>http://mistonline.in/wp/file-system-reference-in-php/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Custom Error Pages Using .htaccess</title>
		<link>http://mistonline.in/wp/custom-error-pages-using-htaccess/</link>
		<comments>http://mistonline.in/wp/custom-error-pages-using-htaccess/#comments</comments>
		<pubDate>Fri, 20 May 2011 20:33:39 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Apache]]></category>
		<category><![CDATA[Html]]></category>
		<category><![CDATA[scripts]]></category>

		<guid isPermaLink="false">http://mistonline.in/wp/?p=207</guid>
		<description><![CDATA[A Simple Method To Create Custom Error Pages The first use of the .htaccess file which I will cover is custom error pages. These will allow you to have your own, personal error pages (for example when a file is not found) instead of using your host&#8217;s error pages or having no page. This will [...]]]></description>
		<wfw:commentRss>http://mistonline.in/wp/custom-error-pages-using-htaccess/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

