<?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>PHPSuperBLOG &#187; MySQL</title>
	<atom:link href="http://www.phpsuperblog.com/category/mysql/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.phpsuperblog.com</link>
	<description>Lot of IT, Lot of Fun</description>
	<lastBuildDate>Wed, 30 Nov 2011 12:34:20 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Change mysql date type into another date format with mysql&#8217;s date_format function</title>
		<link>http://www.phpsuperblog.com/mysql/change-mysql-date-type-into-another-date-format-with-mysqls-date_format-function/</link>
		<comments>http://www.phpsuperblog.com/mysql/change-mysql-date-type-into-another-date-format-with-mysqls-date_format-function/#comments</comments>
		<pubDate>Tue, 12 Apr 2011 02:29:42 +0000</pubDate>
		<dc:creator>Shek</dc:creator>
				<category><![CDATA[MySQL]]></category>
		<category><![CDATA[Date]]></category>
		<category><![CDATA[SQL]]></category>

		<guid isPermaLink="false">http://www.phpsuperblog.com/?p=897</guid>
		<description><![CDATA[MySQL&#8217;s date field type default is in yyyy-mm-dd format, and it is not practical in some cases when we want to use another formating representation such as dd/mm/yyyy. Of course we could use PHP to convert it but the best way I find is to convert it through SQL before any php operation, here is [...]]]></description>
		<wfw:commentRss>http://www.phpsuperblog.com/mysql/change-mysql-date-type-into-another-date-format-with-mysqls-date_format-function/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Adminer &#8211; an alternative mysql database management tool to phpMyAdmin</title>
		<link>http://www.phpsuperblog.com/mysql/adminer-an-alternative-mysql-database-management-tool-to-phpmyadmin/</link>
		<comments>http://www.phpsuperblog.com/mysql/adminer-an-alternative-mysql-database-management-tool-to-phpmyadmin/#comments</comments>
		<pubDate>Thu, 17 Mar 2011 07:51:04 +0000</pubDate>
		<dc:creator>Shek</dc:creator>
				<category><![CDATA[Misc]]></category>
		<category><![CDATA[MySQL]]></category>
		<category><![CDATA[Database]]></category>
		<category><![CDATA[Database management tool]]></category>
		<category><![CDATA[Phpmyadmin]]></category>

		<guid isPermaLink="false">http://www.phpsuperblog.com/?p=815</guid>
		<description><![CDATA[If you are a PHP programmer, phpMyAdmin should be a familiar tool for you. But to deploy phpMyAdmin takes a lot of steps and setting. Therefore I recommend Adminer as an alternative to phpMyAdmin. In my experience, Adminer has several advantages: It consists of only 1 php file for the entire application, just upload into [...]]]></description>
		<wfw:commentRss>http://www.phpsuperblog.com/mysql/adminer-an-alternative-mysql-database-management-tool-to-phpmyadmin/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SQL &#8211; join 2 mysql tables and get data result from them</title>
		<link>http://www.phpsuperblog.com/mysql/sql-join-2-mysql-tables-and-get-data-result-from-them/</link>
		<comments>http://www.phpsuperblog.com/mysql/sql-join-2-mysql-tables-and-get-data-result-from-them/#comments</comments>
		<pubDate>Wed, 16 Mar 2011 09:51:26 +0000</pubDate>
		<dc:creator>Shek</dc:creator>
				<category><![CDATA[MySQL]]></category>
		<category><![CDATA[Database]]></category>
		<category><![CDATA[Query]]></category>
		<category><![CDATA[SQL]]></category>
		<category><![CDATA[Table]]></category>

		<guid isPermaLink="false">http://www.phpsuperblog.com/?p=741</guid>
		<description><![CDATA[In this post, I am going to talk about how to get data from 2 mysql tables instead of 1 table with a sql. Here are 2 mysql tables (The field types are ignored in this examples): Table &#8221; People&#8221; ID name 1&#160; 2 3 May&#160; John Peter Table &#8220;course&#8221;: ID name peopleID 1&#160; 2 [...]]]></description>
		<wfw:commentRss>http://www.phpsuperblog.com/mysql/sql-join-2-mysql-tables-and-get-data-result-from-them/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Include PHP variable in a MySQL query</title>
		<link>http://www.phpsuperblog.com/php/include-php-variable-in-a-mysql-query/</link>
		<comments>http://www.phpsuperblog.com/php/include-php-variable-in-a-mysql-query/#comments</comments>
		<pubDate>Sun, 04 Oct 2009 03:31:17 +0000</pubDate>
		<dc:creator>Shek</dc:creator>
				<category><![CDATA[MySQL]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://www.phpsuperblog.com/?p=140</guid>
		<description><![CDATA[Editor&#8217;s note: In cases, we have to include PHP variables within a MySQL query, here is how it is done: Here is an example PHP file to demonstrate how to do so: 1 2 3 4 5 $query = &#34;SELECT * FROM table1&#34;; $result = mysql_query&#40;$query&#41;or die&#40;mysql_error&#40;&#41;&#41;; while &#40;$line = mysql_fetch_assoc&#40;$result&#41;&#41; &#123; mysql_query&#40;&#34;UPDATE table2 SET [...]]]></description>
		<wfw:commentRss>http://www.phpsuperblog.com/php/include-php-variable-in-a-mysql-query/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Import Excel, CSV file data into MySQL database table</title>
		<link>http://www.phpsuperblog.com/mysql/import-excel-csv-file-data-into-mysql-database-table/</link>
		<comments>http://www.phpsuperblog.com/mysql/import-excel-csv-file-data-into-mysql-database-table/#comments</comments>
		<pubDate>Wed, 20 Aug 2008 03:17:44 +0000</pubDate>
		<dc:creator>Shek</dc:creator>
				<category><![CDATA[MySQL]]></category>
		<category><![CDATA[CSV]]></category>
		<category><![CDATA[Database]]></category>
		<category><![CDATA[Excel]]></category>
		<category><![CDATA[Import]]></category>
		<category><![CDATA[Insert]]></category>
		<category><![CDATA[Phpmyadmin]]></category>

		<guid isPermaLink="false">http://www.phpsuperblog.com/?p=64</guid>
		<description><![CDATA[To import Excel data into the MySQL database&#8217;s table is easy. All you have to do is to save the Excel file as &#8220;CSV&#8221; Format, and use phpmyadmin to complete the job for you. Here I have create an example to show you how to do so: Here are the program I use in this [...]]]></description>
		<wfw:commentRss>http://www.phpsuperblog.com/mysql/import-excel-csv-file-data-into-mysql-database-table/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Install AppServ &#8211; A server environment with (the PHP, MySQL and Apache) into Windows</title>
		<link>http://www.phpsuperblog.com/mysql/install-appserv-a-server-environment-with-the-php-mysql-and-apache-into-windows/</link>
		<comments>http://www.phpsuperblog.com/mysql/install-appserv-a-server-environment-with-the-php-mysql-and-apache-into-windows/#comments</comments>
		<pubDate>Thu, 12 Jun 2008 15:40:10 +0000</pubDate>
		<dc:creator>Shek</dc:creator>
				<category><![CDATA[MySQL]]></category>
		<category><![CDATA[Apache]]></category>
		<category><![CDATA[Server]]></category>

		<guid isPermaLink="false">http://www.phpsuperblog.com/?p=55</guid>
		<description><![CDATA[If you website is not host in home computer but in an external public company and sometimes you might like to test some PHP and MySQL applications, it is not necessary to upload the files there for testing before it actually goes live. We could install a PHP, MySQL and Apache environment in windows for [...]]]></description>
		<wfw:commentRss>http://www.phpsuperblog.com/mysql/install-appserv-a-server-environment-with-the-php-mysql-and-apache-into-windows/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

