<?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>Web Masters Site &#187; PHP</title>
	<atom:link href="http://www.webm.in/category/programming/php/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.webm.in</link>
	<description>All For Web Masters</description>
	<lastBuildDate>Sun, 09 Oct 2011 16:21:36 +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>Delete Duplicate Rows In Mysql With PHP</title>
		<link>http://www.webm.in/2011/10/delete-duplicate-rows-in-mysql-with-php/</link>
		<comments>http://www.webm.in/2011/10/delete-duplicate-rows-in-mysql-with-php/#comments</comments>
		<pubDate>Tue, 04 Oct 2011 13:16:44 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[MySQL]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Programming]]></category>

		<guid isPermaLink="false">http://www.webm.in/?p=304</guid>
		<description><![CDATA[$dupq = mysql_query&#40;&#34;SELECT * FROM `db`&#34;&#41;; $dups = mysql_fetch_array&#40;$dupq&#41;; foreach&#40;$dups as $dup&#41;&#123; mysql_query&#40;&#34;DELETE FROM db WHERE duplicate_COLUMN='&#34;.$dup&#91;'duplicate_column'&#93;.&#34;' AND id!='&#34;.$dup&#91;'id'&#93;.&#34;'&#34;&#41;; &#125; duplicate_COLUMN - Name of column and $dup['column_name'] delete duplicates which include same column data.]]></description>
		<wfw:commentRss>http://www.webm.in/2011/10/delete-duplicate-rows-in-mysql-with-php/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Geotargeting with PHP</title>
		<link>http://www.webm.in/2011/01/geotargeting-with-php/</link>
		<comments>http://www.webm.in/2011/01/geotargeting-with-php/#comments</comments>
		<pubDate>Wed, 12 Jan 2011 14:07:09 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[Programming]]></category>

		<guid isPermaLink="false">http://www.webm.in/?p=278</guid>
		<description><![CDATA[Its really important some time to use geo targeting for your web site users for example if you have e-commerci  site or for any other sites, I'll show example which give you opertunety to use geo ip with php scrip lets start. First of all we need GeoIp base you can download it from here [...]]]></description>
		<wfw:commentRss>http://www.webm.in/2011/01/geotargeting-with-php/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Read From Files In PHP</title>
		<link>http://www.webm.in/2008/08/read-from-files-in-php/</link>
		<comments>http://www.webm.in/2008/08/read-from-files-in-php/#comments</comments>
		<pubDate>Thu, 14 Aug 2008 00:31:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[Programming]]></category>

		<guid isPermaLink="false">http://www.webm.in/?p=135</guid>
		<description><![CDATA[Read from open file can be done with function fread string fread(int file, int length) This function returning string with size of length from file which you want to read, for example &#60;? &#160; $file = fopen&#40;&#34;c:\file.txt&#34;, &#34;r&#34;&#41;; // File which must be opened &#160; if&#40;!$file&#41; //if file have not been loaded &#160; &#123; &#160; [...]]]></description>
		<wfw:commentRss>http://www.webm.in/2008/08/read-from-files-in-php/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>JavaScript And PHP</title>
		<link>http://www.webm.in/2008/05/javascript-and-php/</link>
		<comments>http://www.webm.in/2008/05/javascript-and-php/#comments</comments>
		<pubDate>Wed, 28 May 2008 09:49:50 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://www.webm.in/?p=76</guid>
		<description><![CDATA[For example you want to use javascript in php and want to get for example alert message with this javascript code &#60;strong&#62;&#60;script language=&#34;Javascript&#34;&#62;alert &#40;&#34;This is a Javascript Alert&#34;&#41;&#60;/script&#62; Now how to use it in echo here is example echo&#34; &#60;script language=\&#34;Javascript\&#34;&#62;alert(\&#34;This is a Javascript Alert\&#34;)&#60;/script&#62;&#34;;]]></description>
		<wfw:commentRss>http://www.webm.in/2008/05/javascript-and-php/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PHP File Upload</title>
		<link>http://www.webm.in/2008/04/php-file-upload/</link>
		<comments>http://www.webm.in/2008/04/php-file-upload/#comments</comments>
		<pubDate>Tue, 29 Apr 2008 10:28:17 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[Programming]]></category>

		<guid isPermaLink="false">http://www.webm.in/?p=59</guid>
		<description><![CDATA[<pre lang="php" lineno="4">]]></description>
		<wfw:commentRss>http://www.webm.in/2008/04/php-file-upload/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

