<?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>..::CHANGE is INEVITABLE::.. &#187; php</title>
	<atom:link href="http://kedar.nitty-witty.com/blog/tag/php/feed/" rel="self" type="application/rss+xml" />
	<link>http://kedar.nitty-witty.com/blog</link>
	<description>kedar.nitty-witty.com</description>
	<lastBuildDate>Fri, 03 Sep 2010 13:10:53 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>MySQL master master replication monitor with php code</title>
		<link>http://kedar.nitty-witty.com/blog/mysql-master-master-replication-monitor-with-php-code/</link>
		<comments>http://kedar.nitty-witty.com/blog/mysql-master-master-replication-monitor-with-php-code/#comments</comments>
		<pubDate>Fri, 04 Dec 2009 13:56:52 +0000</pubDate>
		<dc:creator>Kedar</dc:creator>
				<category><![CDATA[MySQL]]></category>
		<category><![CDATA[Technical]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[replication]]></category>
		<category><![CDATA[tool]]></category>

		<guid isPermaLink="false">http://kedar.nitty-witty.com/blog/?p=271</guid>
		<description><![CDATA[
			
				
			
		
For monitoring replication we know a lot of tools and codes &#8211; but this one is different because I wrote it 
Well this is fairly simple php code for monitoring a master master replication setup.
It requires a single shared login id available on both MySQL servers.
It will display in tabular format following details:

File: Present binary [...]


Related posts:<ol><li><a href='http://kedar.nitty-witty.com/blog/monitor-mysql-replication-using-php/' rel='bookmark' title='Permanent Link: Monitor mysql replication using php'>Monitor mysql replication using php</a></li>
<li><a href='http://kedar.nitty-witty.com/blog/quick-multi-mysql-server-installation-with-master-master-replication-on-same-windows-box/' rel='bookmark' title='Permanent Link: Quick Multi MySQL Server Installation with Master-Master Replication on Same Windows Box'>Quick Multi MySQL Server Installation with Master-Master Replication on Same Windows Box</a></li>
<li><a href='http://kedar.nitty-witty.com/blog/problem-with-master-master-replication-and-auto-increment/' rel='bookmark' title='Permanent Link: Problem with Master Master Replication and Auto Increment'>Problem with Master Master Replication and Auto Increment</a></li>
</ol>]]></description>
		<wfw:commentRss>http://kedar.nitty-witty.com/blog/mysql-master-master-replication-monitor-with-php-code/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Monitor mysql replication using php</title>
		<link>http://kedar.nitty-witty.com/blog/monitor-mysql-replication-using-php/</link>
		<comments>http://kedar.nitty-witty.com/blog/monitor-mysql-replication-using-php/#comments</comments>
		<pubDate>Wed, 11 Nov 2009 15:21:25 +0000</pubDate>
		<dc:creator>Kedar</dc:creator>
				<category><![CDATA[MySQL]]></category>
		<category><![CDATA[Technical]]></category>
		<category><![CDATA[monitor]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[replication]]></category>

		<guid isPermaLink="false">http://kedar.nitty-witty.com/blog/?p=200</guid>
		<description><![CDATA[
			
				
			
		
Monitoring a replication is an important aspect. As replication includes multiple nodes, it is essential to track activity and status across all mysql servers involved in replication.
To monitor replication we know commands like:
Show slave status;
Show master status;
Refer: http://dev.mysql.com/doc/refman/5.0/en/sql-syntax-replication.html
But when it comes to non-gui interface, it becomes little tedious.
With some efforts, I managed to make a [...]


Related posts:<ol><li><a href='http://kedar.nitty-witty.com/blog/mysql-master-master-replication-monitor-with-php-code/' rel='bookmark' title='Permanent Link: MySQL master master replication monitor with php code'>MySQL master master replication monitor with php code</a></li>
<li><a href='http://kedar.nitty-witty.com/blog/quick-multi-mysql-server-installation-with-master-master-replication-on-same-windows-box/' rel='bookmark' title='Permanent Link: Quick Multi MySQL Server Installation with Master-Master Replication on Same Windows Box'>Quick Multi MySQL Server Installation with Master-Master Replication on Same Windows Box</a></li>
<li><a href='http://kedar.nitty-witty.com/blog/replication-slave-lag-monitoring-using-heartbeat-and-windows-batch-scripts/' rel='bookmark' title='Permanent Link: Replication slave lag monitoring using heartbeat and windows batch scripts'>Replication slave lag monitoring using heartbeat and windows batch scripts</a></li>
</ol>]]></description>
		<wfw:commentRss>http://kedar.nitty-witty.com/blog/monitor-mysql-replication-using-php/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Upload Image to MySQL using PHP</title>
		<link>http://kedar.nitty-witty.com/blog/upload-image-to-mysql-using-php/</link>
		<comments>http://kedar.nitty-witty.com/blog/upload-image-to-mysql-using-php/#comments</comments>
		<pubDate>Fri, 30 Jan 2009 07:44:22 +0000</pubDate>
		<dc:creator>Kedar</dc:creator>
				<category><![CDATA[MySQL]]></category>
		<category><![CDATA[Technical]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[script]]></category>

		<guid isPermaLink="false">http://kedar.nitty-witty.com/blog/?p=23</guid>
		<description><![CDATA[
			
				
			
		
Upload Image to MySQL using PHP
As a new-bie to php/mysql, I tried different stuffs. So here I&#8217;m with my php code for Image Upload to MySQL. Its a quite simple code with two php files one to display and one to upload.
For Image Upload code, I&#8217;ve added code download link upload-image-mysql-demo.zip at the end of [...]


Related posts:<ol><li><a href='http://kedar.nitty-witty.com/blog/mysql-master-master-replication-monitor-with-php-code/' rel='bookmark' title='Permanent Link: MySQL master master replication monitor with php code'>MySQL master master replication monitor with php code</a></li>
<li><a href='http://kedar.nitty-witty.com/blog/monitor-mysql-replication-using-php/' rel='bookmark' title='Permanent Link: Monitor mysql replication using php'>Monitor mysql replication using php</a></li>
<li><a href='http://kedar.nitty-witty.com/blog/load-delimited-data-csv-excel-into-mysql-server/' rel='bookmark' title='Permanent Link: Load Delimited Data (csv, excel) into MySQL Server'>Load Delimited Data (csv, excel) into MySQL Server</a></li>
</ol>]]></description>
		<wfw:commentRss>http://kedar.nitty-witty.com/blog/upload-image-to-mysql-using-php/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
