<?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; Mysql</title>
	<atom:link href="http://mistonline.in/wp/technology/mysql/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>Set xampp:- Apache Mysql Filezilla Mercury Tomcat as a windows service and get xampp to start automatically on boot up</title>
		<link>http://mistonline.in/wp/set-xampp-apache-mysql-filezilla-mercury-tomcat-as-a-windows-service-and-get-xampp-to-start-automatically-on-boot-up/</link>
		<comments>http://mistonline.in/wp/set-xampp-apache-mysql-filezilla-mercury-tomcat-as-a-windows-service-and-get-xampp-to-start-automatically-on-boot-up/#comments</comments>
		<pubDate>Tue, 20 Dec 2011 15:01:12 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Apache]]></category>
		<category><![CDATA[Mysql]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[Web Tools]]></category>
		<category><![CDATA[XAMPP]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://mistonline.in/wp/?p=1595</guid>
		<description><![CDATA[Set xampp- Apache,Mysql, Filezilla, Mercury and Tomcat as a windows service and get xampp to start automatically on boot up. For this first we need to install xampp on windows. Refer this LINK ON HOW TO INSTALL XAMPP or we have a set of tutorials related to xampp HERE. Once we are done with the [...]]]></description>
		<wfw:commentRss>http://mistonline.in/wp/set-xampp-apache-mysql-filezilla-mercury-tomcat-as-a-windows-service-and-get-xampp-to-start-automatically-on-boot-up/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Simple Mysql table with AUTO_INCREMENT attribute</title>
		<link>http://mistonline.in/wp/simple-mysql-table-with-auto_increment-attribute/</link>
		<comments>http://mistonline.in/wp/simple-mysql-table-with-auto_increment-attribute/#comments</comments>
		<pubDate>Tue, 07 Jun 2011 08:33:27 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Mysql]]></category>

		<guid isPermaLink="false">http://mistonline.in/wp/?p=1300</guid>
		<description><![CDATA[The AUTO_INCREMENT attribute can be used to generate a unique identity for new rows: Here i am creating a simple TABLE named login_details, with COLUMNS id, uniqid, Manager, email, Account_Name. C REATE TABLE login_details ( id MEDIUMINT NOT NULL AUTO_INCREMENT, uniqid MEDIUMINT, Manager CHAR(30), email VARCHAR(255), Account_Name VARCHAR(255), PRIMARY KEY (id) ) ENGINE=MyISAM; Incoming search [...]]]></description>
		<wfw:commentRss>http://mistonline.in/wp/simple-mysql-table-with-auto_increment-attribute/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Search null value or fields in mysql</title>
		<link>http://mistonline.in/wp/search-null-value-or-fields-in-mysql/</link>
		<comments>http://mistonline.in/wp/search-null-value-or-fields-in-mysql/#comments</comments>
		<pubDate>Thu, 12 May 2011 21:30:12 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Mysql]]></category>

		<guid isPermaLink="false">http://mistonline.in/wp/?p=1416</guid>
		<description><![CDATA[This is a simple query in mysql which will return the null fields in a column from a table . This is the Select statement. S3LECT * from TABLE_NAME where COLUMN_NAME is null or COLUMN_NAME=''; This statement.[Here i am setting a value 'no' to my colums that are blank] U:PDATE TABLE_NAME SET COLUMN_NAME = 'no' [...]]]></description>
		<wfw:commentRss>http://mistonline.in/wp/search-null-value-or-fields-in-mysql/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Display mysql table using for loop in php</title>
		<link>http://mistonline.in/wp/display-mysql-table-using-for-loop-in-php/</link>
		<comments>http://mistonline.in/wp/display-mysql-table-using-for-loop-in-php/#comments</comments>
		<pubDate>Tue, 12 Apr 2011 14:53:19 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Mysql]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://mistonline.in/wp/?p=1379</guid>
		<description><![CDATA[This tutorial will show you how to display mysql tables using for loop instead of while in php. Very simple script just grab it guys. //please dont forget to connect to mysql $objDB = mysql_select_db('my_db'); $qry_acct='SELECT * From My_test_table'; $result_acct=mysql_query($qry_acct) or die ('Error Query ['.$qry_acct.']'); $num_acct = mysql_num_rows($result_acct); for($i=0;$i&#60;s $num_acct;$i++) { //My Column is one [...]]]></description>
		<wfw:commentRss>http://mistonline.in/wp/display-mysql-table-using-for-loop-in-php/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>To insert the new column after a specific column using mysql</title>
		<link>http://mistonline.in/wp/to-insert-the-new-column-after-a-specific-column-using-mysql/</link>
		<comments>http://mistonline.in/wp/to-insert-the-new-column-after-a-specific-column-using-mysql/#comments</comments>
		<pubDate>Thu, 03 Feb 2011 06:30:50 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Mysql]]></category>

		<guid isPermaLink="false">http://mistonline.in/wp/?p=1298</guid>
		<description><![CDATA[This query will show you how to insert a new column after a specific column in mysql. For example :- To insert the new column after a specific column, such as name, use this statement: ALT ER TABLE contacts ADD email VARCHAR(60) AFTER name; If you want the new column to be first, use this [...]]]></description>
		<wfw:commentRss>http://mistonline.in/wp/to-insert-the-new-column-after-a-specific-column-using-mysql/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Find the sum of multiple fields inside a table in mysql</title>
		<link>http://mistonline.in/wp/find-the-sum-of-multiple-fields-inside-a-table-in-mysql/</link>
		<comments>http://mistonline.in/wp/find-the-sum-of-multiple-fields-inside-a-table-in-mysql/#comments</comments>
		<pubDate>Thu, 03 Feb 2011 06:14:17 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Mysql]]></category>

		<guid isPermaLink="false">http://mistonline.in/wp/?p=1295</guid>
		<description><![CDATA[Very simple query to find out the sum of multiple fields inside a mysql table. Lets say we have 2 numeric fields , COL1 and COL2 then the mysql query to find the sum of those two field is SELECT SUM(COL1) + SUM(COL2) FROM TABLENAME Incoming search terms: mysql sum multiple columns (15) php mysql [...]]]></description>
		<wfw:commentRss>http://mistonline.in/wp/find-the-sum-of-multiple-fields-inside-a-table-in-mysql/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Reset all the table values in Mysql</title>
		<link>http://mistonline.in/wp/reset-all-the-table-values-in-mysql/</link>
		<comments>http://mistonline.in/wp/reset-all-the-table-values-in-mysql/#comments</comments>
		<pubDate>Thu, 03 Feb 2011 06:08:39 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Mysql]]></category>

		<guid isPermaLink="false">http://mistonline.in/wp/?p=1291</guid>
		<description><![CDATA[This is a simple mysql query to reset all the table values including the auto increment id inside the table. //reset all the table values TRUNCATE TABLE tablename; Incoming search terms: how to reset a table in mysql browser (1) jquerymobile perl mysql example (1) reset all mysql (1)]]></description>
		<wfw:commentRss>http://mistonline.in/wp/reset-all-the-table-values-in-mysql/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Mysql backup via cron using php and email the file</title>
		<link>http://mistonline.in/wp/mysql-backup-via-cron-using-php-and-email-the-file/</link>
		<comments>http://mistonline.in/wp/mysql-backup-via-cron-using-php-and-email-the-file/#comments</comments>
		<pubDate>Sun, 16 Jan 2011 08:35:11 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Mysql]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://mistonline.in/wp/?p=1254</guid>
		<description><![CDATA[This script will show you how to take complete website mysql backup via cron using php and email the backup file as attachment. &#60; ?php $datestamp = date(&#34;Y-m-d&#34;); // Current date to append to filename of backup file in format of YYYY-MM-DD /* CONFIGURE THE FOLLOWING SEVEN VARIABLES TO MATCH YOUR SETUP */ $dbuser = [...]]]></description>
		<wfw:commentRss>http://mistonline.in/wp/mysql-backup-via-cron-using-php-and-email-the-file/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Website slow due to remote mysql server using php solution</title>
		<link>http://mistonline.in/wp/website-slow-due-to-remote-mysql-server-using-php-solution/</link>
		<comments>http://mistonline.in/wp/website-slow-due-to-remote-mysql-server-using-php-solution/#comments</comments>
		<pubDate>Sat, 18 Sep 2010 06:53:25 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Mysql]]></category>

		<guid isPermaLink="false">http://mistonline.in/wp/?p=923</guid>
		<description><![CDATA[Now a few of my projects are getting much bigger and the need for having dedicated Database servers are now more appealing than ever. With MySQL when setting it up I noticed that when trying to access a remote database from an application server, it would takes ages to respond/connect to it. After searching around [...]]]></description>
		<wfw:commentRss>http://mistonline.in/wp/website-slow-due-to-remote-mysql-server-using-php-solution/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Export MySql database table to pdf using php</title>
		<link>http://mistonline.in/wp/export-mysql-database-table-to-pdf-using-php-2/</link>
		<comments>http://mistonline.in/wp/export-mysql-database-table-to-pdf-using-php-2/#comments</comments>
		<pubDate>Sun, 05 Sep 2010 02:44:37 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Mysql]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://mistonline.in/wp/?p=806</guid>
		<description><![CDATA[This is an easy method of exporting mysql database table content to pdf using php and FPDF library. DOWLOAD LIBRARY HERE Download dbtopdf.php file here Remember to rename it to SOMETHING.PHP OR Just save the above file as dbtopdf.php and load Incoming search terms: mysql to pdf using php (95) mysql table to pdf (30) [...]]]></description>
		<wfw:commentRss>http://mistonline.in/wp/export-mysql-database-table-to-pdf-using-php-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Simple Visitor Counter Using php</title>
		<link>http://mistonline.in/wp/simple-visitor-counter-using-php/</link>
		<comments>http://mistonline.in/wp/simple-visitor-counter-using-php/#comments</comments>
		<pubDate>Mon, 05 Jul 2010 20:40:01 +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=708</guid>
		<description><![CDATA[This tutorial require 1 PHP file and 1 table of mySQL database. 1. counter.php 2. Database &#8220;mypage&#8221; and table &#8220;counter&#8221; with 1 fields: visitor(Int, 11). You need to insert a first one record with &#8220;0&#8243;. Counter.php Source Code &#60; ?php // For using session variables put this function on the top. session_start(); // Connect database [...]]]></description>
		<wfw:commentRss>http://mistonline.in/wp/simple-visitor-counter-using-php/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Export MySQL to CSV (Excel) using php</title>
		<link>http://mistonline.in/wp/export-mysql-to-csv-excel-using-php/</link>
		<comments>http://mistonline.in/wp/export-mysql-to-csv-excel-using-php/#comments</comments>
		<pubDate>Mon, 05 Jul 2010 20:31:00 +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=704</guid>
		<description><![CDATA[You can export your MySQL database to .csv file format (Microsoft Excel file) easily using php. This tutorial require 1 PHP file and 1 table of mySQL database. 1. exportcsv.php 2. The table is with 2 fields: id(auto_increment), name(varchar, 50) and put some records about 20 &#8211; 30 records into this table. (directly by phpMyAdmin) [...]]]></description>
		<wfw:commentRss>http://mistonline.in/wp/export-mysql-to-csv-excel-using-php/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Import large files in mysql using PhpMyAdmin</title>
		<link>http://mistonline.in/wp/import-large-files-in-mysql-using-phpmyadmin-2/</link>
		<comments>http://mistonline.in/wp/import-large-files-in-mysql-using-phpmyadmin-2/#comments</comments>
		<pubDate>Sun, 27 Jun 2010 17:47:25 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Mysql]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Apache]]></category>

		<guid isPermaLink="false">http://mistonline.in/wp/?p=677</guid>
		<description><![CDATA[Sometimes when trying to upload some huge SQL file using PHPMYADMIN  we might come across this ERROR MESSAGE Error: You probably tried to upload too large file. Please refer to documentation for ways to workaround this limit There is simple a fix for this:- Find the config.inc.php file located in the phpmyadmin directory. In my case it is located here: [...]]]></description>
		<wfw:commentRss>http://mistonline.in/wp/import-large-files-in-mysql-using-phpmyadmin-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Fix Too many connections mysql_connect</title>
		<link>http://mistonline.in/wp/fix-too-many-connections-mysql_connect/</link>
		<comments>http://mistonline.in/wp/fix-too-many-connections-mysql_connect/#comments</comments>
		<pubDate>Wed, 23 Jun 2010 13:43:55 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Mysql]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://mistonline.in/wp/?p=592</guid>
		<description><![CDATA[If you get a Too many connections error when you try to connect to the mysq server, then it clearly means that all available connections are in use. Too Many Connections can be caused by either a lot of simultaneous connections or by old connections not being released properly. Factors affecting the connection of MySQL [...]]]></description>
		<wfw:commentRss>http://mistonline.in/wp/fix-too-many-connections-mysql_connect/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Php mysql example image gallery blob storage</title>
		<link>http://mistonline.in/wp/php-mysql-example-image-gallery-blob-storage/</link>
		<comments>http://mistonline.in/wp/php-mysql-example-image-gallery-blob-storage/#comments</comments>
		<pubDate>Sun, 08 Feb 2009 13:24:36 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Mysql]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[blob]]></category>

		<guid isPermaLink="false">http://mistonline.in/wp/php-mysql-example-image-gallery-blob-storage/</guid>
		<description><![CDATA[abstract This is a simple example of photo-gallery script, which uses MySQL table (BLOB field) to store images. Trivial password-protection, uploading and deleting images are supported. For Apache-version of PHP there is advanced browser-caching support (using If-Modified-Since header). compatible PHP 4.3.0 or higher PHP 5 There are three notable parts of the script: main page generation &#8211; [...]]]></description>
		<wfw:commentRss>http://mistonline.in/wp/php-mysql-example-image-gallery-blob-storage/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to run a SQL query in phpMyAdmin</title>
		<link>http://mistonline.in/wp/how-to-run-a-sql-query-in-phpmyadmin/</link>
		<comments>http://mistonline.in/wp/how-to-run-a-sql-query-in-phpmyadmin/#comments</comments>
		<pubDate>Tue, 30 Dec 2008 15:52:08 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Mysql]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[phpmyadmin]]></category>

		<guid isPermaLink="false">http://mistonline.in/wp/how-to-run-a-sql-query-in-phpmyadmin/</guid>
		<description><![CDATA[How to run a SQL query in phpMyAdmin Objective: In this tutorial, you will learn how to run a query using phpMyAdmin for use in our other tutorials. Step 1: Create a database.Note:-If using cPanel, click MySQL® Databases, and create a new database, then click phpMyAdmin! Step 2: Select the database you want to use [...]]]></description>
		<wfw:commentRss>http://mistonline.in/wp/how-to-run-a-sql-query-in-phpmyadmin/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Total Number Of Rows In MYSQL</title>
		<link>http://mistonline.in/wp/total-number-of-rows-in-mysql/</link>
		<comments>http://mistonline.in/wp/total-number-of-rows-in-mysql/#comments</comments>
		<pubDate>Sun, 12 Oct 2008 02:12:34 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Mysql]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://mistonline.in/wp/total-number-of-rows-in-mysql/</guid>
		<description><![CDATA[This tutorial will help you calculate the total number of rows in your MYSQL table with ease using simple php scripts. < ?php $link = mysql_connect(&#8220;localhost&#8221;, &#8220;root&#8221;, &#8220;&#8221;); mysql_select_db(&#8220;mails&#8221;, $link); $result = mysql_query(&#8220;SELECT * FROM mail&#8221;, $link); $a = mysql_num_rows($result); echo &#8220;$a Rows\n&#8221;; ?> Incoming search terms: php $query (2) mysql get total records (2) [...]]]></description>
		<wfw:commentRss>http://mistonline.in/wp/total-number-of-rows-in-mysql/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

