<?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; Database</title>
	<atom:link href="http://www.phpsuperblog.com/tag/database/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.phpsuperblog.com</link>
	<description>Learn PHP Together</description>
	<lastBuildDate>Fri, 30 Jul 2010 07:26:54 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Change the MySQL database table encoding to UTF8 with PHP</title>
		<link>http://www.phpsuperblog.com/php/change-the-mysql-database-table-encoding-to-utf8-with-php/</link>
		<comments>http://www.phpsuperblog.com/php/change-the-mysql-database-table-encoding-to-utf8-with-php/#comments</comments>
		<pubDate>Wed, 10 Jun 2009 02:29:56 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[Alter]]></category>
		<category><![CDATA[Database]]></category>
		<category><![CDATA[Display]]></category>
		<category><![CDATA[Encoding]]></category>
		<category><![CDATA[MySQL]]></category>
		<category><![CDATA[Table]]></category>
		<category><![CDATA[UTF8]]></category>

		<guid isPermaLink="false">http://www.phpsuperblog.com/?p=72</guid>
		<description><![CDATA[Editor&#8217;s note: In some cases, when you have forgotten to preset the MySQL database table encoding to UTF8 after the creation of the database but later you need to insert some UTF8 text such as Chinese or other Asian languages, here is how you could do with PHP to change the encoding of the MySQL database [...]]]></description>
		<wfw:commentRss>http://www.phpsuperblog.com/php/change-the-mysql-database-table-encoding-to-utf8-with-php/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Check how many record in the MySQL database matches the query</title>
		<link>http://www.phpsuperblog.com/php/check-how-many-record-in-the-mysql-database-matches-the-query/</link>
		<comments>http://www.phpsuperblog.com/php/check-how-many-record-in-the-mysql-database-matches-the-query/#comments</comments>
		<pubDate>Mon, 30 Jun 2008 09:13:21 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[Database]]></category>
		<category><![CDATA[Display]]></category>
		<category><![CDATA[MySQL]]></category>
		<category><![CDATA[PHP Function]]></category>
		<category><![CDATA[Query]]></category>
		<category><![CDATA[Row]]></category>

		<guid isPermaLink="false">http://www.phpsuperblog.com/?p=61</guid>
		<description><![CDATA[Editor&#8217;s note: In some cases, you might like to check how many records in the MySQL database which matches the query you entered. Case such as a login system where you want to check if there is a record matches the user name and the password inputted , here is an example I have created [...]]]></description>
		<wfw:commentRss>http://www.phpsuperblog.com/php/check-how-many-record-in-the-mysql-database-matches-the-query/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Close MySQL database connection</title>
		<link>http://www.phpsuperblog.com/php/close-mysql-database-connection/</link>
		<comments>http://www.phpsuperblog.com/php/close-mysql-database-connection/#comments</comments>
		<pubDate>Wed, 14 May 2008 12:58:58 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[Database]]></category>
		<category><![CDATA[MySQL]]></category>
		<category><![CDATA[PHP Function]]></category>

		<guid isPermaLink="false">http://www.phpsuperblog.com/?p=27</guid>
		<description><![CDATA[Editor&#8217;s note: You might wonder if you can open a connection with the MySQL database, but can you close the connection with the MySQL database? First, connect to the database: &#60;?php $connection = mysql_connect&#40;&#34;Host Name&#34;, &#34;User Name&#34;, &#34;User Password&#34;&#41;; ?&#62; Now to close the connection, we use mysql_close( ); &#60;?php mysql_close&#40;$connection&#41;; ?&#62; &#169;2010 PHPSuperBLOG. All Rights [...]]]></description>
		<wfw:commentRss>http://www.phpsuperblog.com/php/close-mysql-database-connection/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Connect to Mysql datebase</title>
		<link>http://www.phpsuperblog.com/php/connect-to-mysql-datebase-with-php/</link>
		<comments>http://www.phpsuperblog.com/php/connect-to-mysql-datebase-with-php/#comments</comments>
		<pubDate>Mon, 14 Apr 2008 13:11:34 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[Database]]></category>
		<category><![CDATA[MySQL]]></category>
		<category><![CDATA[PHP Function]]></category>

		<guid isPermaLink="false">http://www.phpsuperblog.com/?p=5</guid>
		<description><![CDATA[Editor&#8217;s note: In this post, I would like to show you how to use PHP to connect to a MySQL database. It is very a important part in the PHP and MySQL programming. To be able to connect to the MySQL database. We have to put a set of PHP code at the beginning of the [...]]]></description>
		<wfw:commentRss>http://www.phpsuperblog.com/php/connect-to-mysql-datebase-with-php/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Copy one table&#8217;s field records into another table&#8217;s field in MySQL database with PHP</title>
		<link>http://www.phpsuperblog.com/php/copy-one-tables-field-records-into-another-tables-field-in-mysql-database-with-php/</link>
		<comments>http://www.phpsuperblog.com/php/copy-one-tables-field-records-into-another-tables-field-in-mysql-database-with-php/#comments</comments>
		<pubDate>Thu, 22 May 2008 11:43:26 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[Backup]]></category>
		<category><![CDATA[Copy]]></category>
		<category><![CDATA[Database]]></category>
		<category><![CDATA[Insert]]></category>
		<category><![CDATA[Loop]]></category>
		<category><![CDATA[MySQL]]></category>
		<category><![CDATA[PHP Function]]></category>
		<category><![CDATA[Table]]></category>
		<category><![CDATA[While-loop]]></category>

		<guid isPermaLink="false">http://www.phpsuperblog.com/?p=45</guid>
		<description><![CDATA[Editor&#8217;s note: In some cases such as a login system or other company&#8217;s stock count system which the records in the MySQL database might need to update very frequently. There might be a need to create another tables to backup monthly of the data to another table in the MySQL database. It is a good idea [...]]]></description>
		<wfw:commentRss>http://www.phpsuperblog.com/php/copy-one-tables-field-records-into-another-tables-field-in-mysql-database-with-php/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Create check box by using the records from MySQL datebase as values</title>
		<link>http://www.phpsuperblog.com/php/create-check-box-by-using-the-records-from-mysql-datebase-as-values/</link>
		<comments>http://www.phpsuperblog.com/php/create-check-box-by-using-the-records-from-mysql-datebase-as-values/#comments</comments>
		<pubDate>Thu, 05 Jun 2008 13:38:31 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[Check-box]]></category>
		<category><![CDATA[Database]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[HTML form]]></category>
		<category><![CDATA[HTML form element]]></category>
		<category><![CDATA[MySQL]]></category>

		<guid isPermaLink="false">http://www.phpsuperblog.com/?p=54</guid>
		<description><![CDATA[Editor&#8217;s note: To use the records in the MySQL database as the &#8220;values and display text&#8221; of the check box is a good idea for the administrator because he/she can add, update or delete check box&#8217;s items from the MySQL database, without touching the HTML source. I have created an example to demonstrate how to do [...]]]></description>
		<wfw:commentRss>http://www.phpsuperblog.com/php/create-check-box-by-using-the-records-from-mysql-datebase-as-values/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Create MySQL database table with PHP</title>
		<link>http://www.phpsuperblog.com/php/create-mysql-database-table-with-php/</link>
		<comments>http://www.phpsuperblog.com/php/create-mysql-database-table-with-php/#comments</comments>
		<pubDate>Sat, 10 May 2008 20:16:21 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[Database]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[HTML form]]></category>
		<category><![CDATA[MySQL]]></category>
		<category><![CDATA[PHP Function]]></category>
		<category><![CDATA[Query]]></category>
		<category><![CDATA[Table]]></category>

		<guid isPermaLink="false">http://www.phpsuperblog.com/?p=23</guid>
		<description><![CDATA[Editor&#8217;s note: To create a MySQL database table with PHP is very straight forward, all you have to do is to know the query for creating the MySQL database table, and use PHP function mysql_query( ) to run that query. You could also use a HTML form to let the user to input the name of [...]]]></description>
		<wfw:commentRss>http://www.phpsuperblog.com/php/create-mysql-database-table-with-php/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Delete records from MySQL database with HTML form and PHP</title>
		<link>http://www.phpsuperblog.com/php/delete-records-from-mysql-database-with-html-form-and-php/</link>
		<comments>http://www.phpsuperblog.com/php/delete-records-from-mysql-database-with-html-form-and-php/#comments</comments>
		<pubDate>Thu, 15 May 2008 11:33:52 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[Button]]></category>
		<category><![CDATA[Database]]></category>
		<category><![CDATA[Delete]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[HTML form]]></category>
		<category><![CDATA[HTML form element]]></category>
		<category><![CDATA[MySQL]]></category>
		<category><![CDATA[PHP Function]]></category>
		<category><![CDATA[Query]]></category>
		<category><![CDATA[Submit-button]]></category>
		<category><![CDATA[Text-field]]></category>

		<guid isPermaLink="false">http://www.phpsuperblog.com/?p=29</guid>
		<description><![CDATA[Editor&#8217;s note: In some cases such as a company&#8217;s login system for example, the login names and passwords are stored in the MySQL database. But if a staff leaves the company and so his account has to be removed from the database. Therefore it is good to design a HTML form for the administrator to remove [...]]]></description>
		<wfw:commentRss>http://www.phpsuperblog.com/php/delete-records-from-mysql-database-with-html-form-and-php/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
