<?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>PHPJavascript &#187; MySQL</title>
	<atom:link href="http://www.phpjavascript.com/category/mysql/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.phpjavascript.com</link>
	<description>Web Development Guide - My Personal Library of Tutorials and Scripts</description>
	<lastBuildDate>Tue, 24 Jan 2012 08:08:00 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>MYSQL phpmyadmin import csv only first row</title>
		<link>http://www.phpjavascript.com/mysql-phpmyadmin-import-csv-only-first-row/</link>
		<comments>http://www.phpjavascript.com/mysql-phpmyadmin-import-csv-only-first-row/#comments</comments>
		<pubDate>Tue, 12 Apr 2011 08:45:22 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[MySQL]]></category>

		<guid isPermaLink="false">http://www.phpjavascript.com/?p=593</guid>
		<description><![CDATA[I was trying to import csv into mysql database through phpmyadmin
I had build the csv from excel, hence the delimited restriction. Click here to learn how to create csv from excel then how to import it into mysql. Just make sure .. that before importing you create and select the table in which the import [...]]]></description>
		<wfw:commentRss>http://www.phpjavascript.com/mysql-phpmyadmin-import-csv-only-first-row/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>PHP MYSQl Date Format</title>
		<link>http://www.phpjavascript.com/php-mysql-date-format/</link>
		<comments>http://www.phpjavascript.com/php-mysql-date-format/#comments</comments>
		<pubDate>Mon, 21 Feb 2011 05:22:13 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[MySQL]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://www.phpjavascript.com/?p=575</guid>
		<description><![CDATA[To resolve the issue of displaying the date in dd-mm-yyyy format when it is saved in the mysql database as yyyy-mm-dd do the following:
&#60;?php
$resdate=mysql_query(&#8221;select DATE_FORMAT(date, &#8216;%d/%m/%y&#8217;) AS formatted_date from job where jobid=&#8217;$jobid&#8217;&#8221;);
$rowd=mysql_fetch_array($resdate);
echo $rowd["formatted_date"];
?&#62;
]]></description>
		<wfw:commentRss>http://www.phpjavascript.com/php-mysql-date-format/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Mysql join tables not equal values</title>
		<link>http://www.phpjavascript.com/mysql-join-tables-not-equal-values/</link>
		<comments>http://www.phpjavascript.com/mysql-join-tables-not-equal-values/#comments</comments>
		<pubDate>Tue, 10 Nov 2009 11:50:56 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[MySQL]]></category>

		<guid isPermaLink="false">http://www.phpjavascript.com/?p=431</guid>
		<description><![CDATA[I wanted to join two tables and get the uncommon results or values between the two. I tried join statement but apprently that does not do the trick, use the following if you have such a requirement:
select * from a wheret id not in (select tid from b)
]]></description>
		<wfw:commentRss>http://www.phpjavascript.com/mysql-join-tables-not-equal-values/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PHP MSSQL or SQL &#8211; Connect and configure</title>
		<link>http://www.phpjavascript.com/php-mssql-or-sql-connect-and-configure/</link>
		<comments>http://www.phpjavascript.com/php-mssql-or-sql-connect-and-configure/#comments</comments>
		<pubDate>Sun, 16 Dec 2007 13:06:40 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[MySQL]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://www.phpjavascript.com/?p=304</guid>
		<description><![CDATA[Learn how to configure and connect PHP with Microsoft SQL. And you always thought PHP could only fit with MYSQL.
Requirements
PHP (Click here to Install and configure PHP5 on windows system)
MS SQL (Click  here to Install MS SQL on windows)
//  
// 
Configure MS SQL with PHP on windows
Open php.ini file and add extension=php_mssql.dll . [...]]]></description>
		<wfw:commentRss>http://www.phpjavascript.com/php-mssql-or-sql-connect-and-configure/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PHPmyadmin &#8211; Monitor MYSQL databases and tables</title>
		<link>http://www.phpjavascript.com/phpmyadmin-monitor-mysql-databases-and-tables/</link>
		<comments>http://www.phpjavascript.com/phpmyadmin-monitor-mysql-databases-and-tables/#comments</comments>
		<pubDate>Sat, 25 Aug 2007 11:33:07 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[MySQL]]></category>

		<guid isPermaLink="false">http://localhost/php1/?p=155</guid>
		<description><![CDATA[Create, delete, sort, search, export, import mysql tables and databases using an easy to use interface GUI.
phpMyAdmin is a tool written in PHP intended to handle the administration  of MySQL over the Web. Currently it can create and drop databases, create/drop/alter  tables, delete/edit/add fields, execute any SQL statement, manage keys on fields.
Download
Click here [...]]]></description>
		<wfw:commentRss>http://www.phpjavascript.com/phpmyadmin-monitor-mysql-databases-and-tables/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PHPmyadmin &#8211; Monitor MYSQL databases and tables</title>
		<link>http://www.phpjavascript.com/phpmyadmin-monitor-mysql-databases-and-tables-2/</link>
		<comments>http://www.phpjavascript.com/phpmyadmin-monitor-mysql-databases-and-tables-2/#comments</comments>
		<pubDate>Sat, 25 Aug 2007 07:21:01 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[MySQL]]></category>

		<guid isPermaLink="false">http://www.phpjavascript.com/?p=256</guid>
		<description><![CDATA[Create, delete, sort, search, export, import mysql tables and databases using an easy to use interface GUI
phpMyAdmin is a tool written in PHP intended to handle the administration  of MySQL over the Web. Currently it can create and drop databases, create/drop/alter  tables, delete/edit/add fields, execute any SQL statement, manage keys on fields.
Download
Click here [...]]]></description>
		<wfw:commentRss>http://www.phpjavascript.com/phpmyadmin-monitor-mysql-databases-and-tables-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Install download and configure MYSQL on Windows</title>
		<link>http://www.phpjavascript.com/install-download-and-configure-mysql-on-windows/</link>
		<comments>http://www.phpjavascript.com/install-download-and-configure-mysql-on-windows/#comments</comments>
		<pubDate>Wed, 22 Aug 2007 11:31:14 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[MySQL]]></category>

		<guid isPermaLink="false">http://localhost/php1/?p=153</guid>
		<description><![CDATA[Installing MYSQL is very easy as it comes with an installer. Just download it and run the installer everything.
Download
click here to download mysql.  When this page opens click on &#8220;No thanks just take me to download&#8221;, then pick  any mirror site and start downloading MYSQL.
Install and Configure
Just click the installer and MYSQL will [...]]]></description>
		<wfw:commentRss>http://www.phpjavascript.com/install-download-and-configure-mysql-on-windows/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Install download and configure MYSQL on Windows</title>
		<link>http://www.phpjavascript.com/install-download-and-configure-mysql-on-windows-2/</link>
		<comments>http://www.phpjavascript.com/install-download-and-configure-mysql-on-windows-2/#comments</comments>
		<pubDate>Wed, 22 Aug 2007 07:24:26 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[MySQL]]></category>

		<guid isPermaLink="false">http://www.phpjavascript.com/?p=259</guid>
		<description><![CDATA[Installing MYSQL is very easy as it comes with an installer. Just download it and run the installer everything else will done in a jiffy.
Download
click here to download mysql. When this page opens click on &#8220;No thanks just take me to download&#8221;, then pick any mirror site and start downloading MYSQL.
Install and Configure
Just click the [...]]]></description>
		<wfw:commentRss>http://www.phpjavascript.com/install-download-and-configure-mysql-on-windows-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Multiple select statements &#8211; HTML Forms and MySQL</title>
		<link>http://www.phpjavascript.com/multiple-select-statements-html-forms-and-mysql/</link>
		<comments>http://www.phpjavascript.com/multiple-select-statements-html-forms-and-mysql/#comments</comments>
		<pubDate>Sat, 04 Aug 2007 10:01:22 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[MySQL]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://localhost/php1/?p=126</guid>
		<description><![CDATA[Extract values from multiple select statements or list with multiple choices for HTML forms and MySQL tables using PHP.
Lets cut to the chase, how would you pass values from one form to the other  using a list with multiple choices? The answer is by adding a square bracket in  the name of the [...]]]></description>
		<wfw:commentRss>http://www.phpjavascript.com/multiple-select-statements-html-forms-and-mysql/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Lock or restrict MySQL table rows</title>
		<link>http://www.phpjavascript.com/lock-or-restrict-mysql-table-rows/</link>
		<comments>http://www.phpjavascript.com/lock-or-restrict-mysql-table-rows/#comments</comments>
		<pubDate>Sun, 29 Jul 2007 09:59:56 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[MySQL]]></category>

		<guid isPermaLink="false">http://localhost/php1/?p=124</guid>
		<description><![CDATA[Use PHP to lock a MySQL table entries or rows. I have used this in licensing a software I had build.
I have build an office automation software insidei2 for which my company has decided to create licensing on the bases of users, ie you pay per user.
So I was asked to lock the database or [...]]]></description>
		<wfw:commentRss>http://www.phpjavascript.com/lock-or-restrict-mysql-table-rows/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

