<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss 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:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>RyanTetek.com</title>
	
	<link>http://www.ryantetek.com</link>
	<description>&gt; PHP and Javascript/AJAX articles and tutorials</description>
	<pubDate>Sat, 10 Dec 2011 00:35:17 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.7.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/ryantetek" /><feedburner:info uri="ryantetek" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><item>
		<title>Importing large SQL files through command line when using PHPMyAdmin/XAMPP</title>
		<link>http://feedproxy.google.com/~r/ryantetek/~3/empJHLWM0jU/</link>
		<comments>http://www.ryantetek.com/2011/09/importing-large-sql-files-through-command-line-when-using-phpmyadminxampp/#comments</comments>
		<pubDate>Thu, 01 Sep 2011 04:27:37 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Others]]></category>

		<category><![CDATA[PHP]]></category>

		<category><![CDATA[import file too large PHPMyAdmin XAMPP]]></category>

		<category><![CDATA[import large sql file XAMPP]]></category>

		<category><![CDATA[importing SQL file error PHPMyAdmin]]></category>

		<category><![CDATA[importing sql file through command line Windows]]></category>

		<guid isPermaLink="false">http://www.ryantetek.com/?p=675</guid>
		<description>This tutorial is on how to import large SQL files when your sql dump file cannot be handled by PHPMyAdmin due to its large file size. Importing large SQL file sizes in PHPMyAdmin will produce an error if maximum file upload size has been reached and sometimes may cause the browser to freeze. You have [...]&lt;img src="http://feeds.feedburner.com/~r/ryantetek/~4/empJHLWM0jU" height="1" width="1"/&gt;</description>
		<wfw:commentRss>http://www.ryantetek.com/2011/09/importing-large-sql-files-through-command-line-when-using-phpmyadminxampp/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.ryantetek.com/2011/09/importing-large-sql-files-through-command-line-when-using-phpmyadminxampp/</feedburner:origLink></item>
		<item>
		<title>Date picker HTML select boxes with automatic date selection PHP snippet</title>
		<link>http://feedproxy.google.com/~r/ryantetek/~3/e1BBiPGbnq0/</link>
		<comments>http://www.ryantetek.com/2011/08/date-picker-html-select-boxes-with-automatic-date-selection-php-snippet/#comments</comments>
		<pubDate>Tue, 09 Aug 2011 10:45:59 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[PHP]]></category>

		<category><![CDATA[Date picker HTML snippet]]></category>

		<category><![CDATA[Date picker PHP snippet]]></category>

		<category><![CDATA[HTML date picker with date today selected]]></category>

		<category><![CDATA[HTML select date]]></category>

		<guid isPermaLink="false">http://www.ryantetek.com/?p=663</guid>
		<description>This PHP snippet creates a HTML datepicker and automatically selects the current date in the select boxes.

&amp;#60;?php
$current_month = date(&amp;#34;m&amp;#34;);
$current_day = date(&amp;#34;d&amp;#34;);
$current_year = date(&amp;#34;Y&amp;#34;);
?&amp;#62;

&amp;#60;select name=&amp;#34;month&amp;#34;&amp;#62;
&amp;#60;option value=&amp;#34;01&amp;#34; &amp;#60;?php if($current_month == &amp;#34;01&amp;#34;){ echo &amp;#34;selected&amp;#34;; } 
?&amp;#62;&amp;#62;January&amp;#60;/option&amp;#62;
&amp;#60;option value=&amp;#34;02&amp;#34; &amp;#60;?php if($current_month == &amp;#34;02&amp;#34;){ echo &amp;#34;selected&amp;#34;; } 
?&amp;#62;&amp;#62;February&amp;#60;/option&amp;#62;
&amp;#60;option value=&amp;#34;03&amp;#34; &amp;#60;?php if($current_month == &amp;#34;03&amp;#34;){ echo &amp;#34;selected&amp;#34;; } 
?&amp;#62;&amp;#62;March&amp;#60;/option&amp;#62;
&amp;#60;option value=&amp;#34;04&amp;#34; &amp;#60;?php if($current_month == [...]&lt;img src="http://feeds.feedburner.com/~r/ryantetek/~4/e1BBiPGbnq0" height="1" width="1"/&gt;</description>
		<wfw:commentRss>http://www.ryantetek.com/2011/08/date-picker-html-select-boxes-with-automatic-date-selection-php-snippet/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.ryantetek.com/2011/08/date-picker-html-select-boxes-with-automatic-date-selection-php-snippet/</feedburner:origLink></item>
		<item>
		<title>How to display PHP errors without altering php.ini file</title>
		<link>http://feedproxy.google.com/~r/ryantetek/~3/Y9WlOYY6Z4A/</link>
		<comments>http://www.ryantetek.com/2011/07/how-to-display-php-errors-without-altering-php-dot-ini-file/#comments</comments>
		<pubDate>Wed, 13 Jul 2011 02:46:42 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[PHP]]></category>

		<category><![CDATA[display all errors php]]></category>

		<category><![CDATA[echo all php errors]]></category>

		<category><![CDATA[print out all errors php.ini]]></category>

		<category><![CDATA[set display_errors to true php]]></category>

		<guid isPermaLink="false">http://www.ryantetek.com/?p=654</guid>
		<description>This quicktip will teach you on how display PHP errors on your website without altering your php.ini file and by just writing 2 lines of PHP code and including it in your config file or just including it into your page as an include file. Sometimes(or I say &amp;#8220;always&amp;#8221;) web hosting companies turn &amp;#8220;display_errors&amp;#8221; configuration [...]&lt;img src="http://feeds.feedburner.com/~r/ryantetek/~4/Y9WlOYY6Z4A" height="1" width="1"/&gt;</description>
		<wfw:commentRss>http://www.ryantetek.com/2011/07/how-to-display-php-errors-without-altering-php-dot-ini-file/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.ryantetek.com/2011/07/how-to-display-php-errors-without-altering-php-dot-ini-file/</feedburner:origLink></item>
		<item>
		<title>IP address restrictions to protect directories using .htaccess</title>
		<link>http://feedproxy.google.com/~r/ryantetek/~3/KK9GytqSEmg/</link>
		<comments>http://www.ryantetek.com/2011/06/ip-address-restrictions-to-protect-directories-using-htaccess/#comments</comments>
		<pubDate>Thu, 23 Jun 2011 07:47:42 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Others]]></category>

		<category><![CDATA[allow directory access by IP address htaccess]]></category>

		<category><![CDATA[restrict directories htaccess]]></category>

		<category><![CDATA[restrict folders htaccess]]></category>

		<guid isPermaLink="false">http://www.ryantetek.com/?p=643</guid>
		<description>This is a simple quick tool to protect any given directory of your choice by limiting the users viewing and accessing the folder by specifying the IP addresses that can only access it in .htaccess
1. Open your text editor, copy and paste the following code:

AuthUserFile /dev/null
AuthGroupFile /dev/null
AuthName &amp;#34;Example Access Control&amp;#34;
AuthType Basic
&amp;#60;LIMIT GET&amp;#62;
order deny,allow
deny from all
allow [...]&lt;img src="http://feeds.feedburner.com/~r/ryantetek/~4/KK9GytqSEmg" height="1" width="1"/&gt;</description>
		<wfw:commentRss>http://www.ryantetek.com/2011/06/ip-address-restrictions-to-protect-directories-using-htaccess/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.ryantetek.com/2011/06/ip-address-restrictions-to-protect-directories-using-htaccess/</feedburner:origLink></item>
		<item>
		<title>How to format MySQL Date and Time fields into user readable format</title>
		<link>http://feedproxy.google.com/~r/ryantetek/~3/JG5ujR9eTUQ/</link>
		<comments>http://www.ryantetek.com/2011/04/how-to-format-mysql-date-and-time-fields-into-user-readable-format/#comments</comments>
		<pubDate>Fri, 15 Apr 2011 04:06:21 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[PHP]]></category>

		<category><![CDATA[Custom date and time PHP MySQL]]></category>

		<category><![CDATA[date_format PHP]]></category>

		<category><![CDATA[formatting date output PHP MySQL]]></category>

		<category><![CDATA[other date and time output format PHP MySQL]]></category>

		<guid isPermaLink="false">http://www.ryantetek.com/?p=632</guid>
		<description>Date and time fields or what we call timestamps stored in our Mysql databases has a format of &amp;#8220;YYYY-MM-DD HH:MM:SS&amp;#8221; or &amp;#8220;2011-04-15 11:30:00&amp;#8243; . It is awkward for the users to to see dates outputted to something in that format, so for user readability and friendly purposes, we must output the date into something more [...]&lt;img src="http://feeds.feedburner.com/~r/ryantetek/~4/JG5ujR9eTUQ" height="1" width="1"/&gt;</description>
		<wfw:commentRss>http://www.ryantetek.com/2011/04/how-to-format-mysql-date-and-time-fields-into-user-readable-format/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.ryantetek.com/2011/04/how-to-format-mysql-date-and-time-fields-into-user-readable-format/</feedburner:origLink></item>
	</channel>
</rss><!-- analytics977 -->

