<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Milap Patel</title>
	<atom:link href="http://patelmilap.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://patelmilap.wordpress.com</link>
	<description>Luck is when opportunity meets preparation !</description>
	<lastBuildDate>Thu, 09 Feb 2012 07:00:35 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='patelmilap.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://0.gravatar.com/blavatar/49c6988827fd21c1ed16b22fb84c5397?s=96&#038;d=http%3A%2F%2Fs2.wp.com%2Fi%2Fbuttonw-com.png</url>
		<title>Milap Patel</title>
		<link>http://patelmilap.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://patelmilap.wordpress.com/osd.xml" title="Milap Patel" />
	<atom:link rel='hub' href='http://patelmilap.wordpress.com/?pushpress=hub'/>
		<item>
		<title>PHP File Upload</title>
		<link>http://patelmilap.wordpress.com/2012/01/30/php-file-upload/</link>
		<comments>http://patelmilap.wordpress.com/2012/01/30/php-file-upload/#comments</comments>
		<pubDate>Mon, 30 Jan 2012 06:30:26 +0000</pubDate>
		<dc:creator>Milap</dc:creator>
				<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://patelmilap.wordpress.com/?p=562</guid>
		<description><![CDATA[PHP allows users to upload images on server as shown below. Filed under: php Tagged: php<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=patelmilap.wordpress.com&amp;blog=18956015&amp;post=562&amp;subd=patelmilap&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><strong>PHP allows users to upload images on server as shown below.</strong></p>
<p><pre class="brush: php; html-script: true;">
&lt;?php
if(isset($_REQUEST['upload'])) {
$filename    =    $_FILES['filename']['tmp_name'];
if (file_exists($_SERVER['DOCUMENT_ROOT'].$_FILES[&quot;filename&quot;][&quot;name&quot;]))
{
echo $_FILES[&quot;filename&quot;][&quot;name&quot;] . &quot; Already Exists. &quot;;
}
else {
$path    =    $_SERVER['DOCUMENT_ROOT'].$_FILES['filename']['name'];
move_uploaded_file($filename,$path);
}
}
?&gt;

&lt;strong&gt;Create HTML form shown as below.&lt;/strong&gt;
&lt;form enctype=&quot;multipart/form-data&quot; method=&quot;post&quot; action=&quot;&quot;&gt;
&lt;input type=file size=6 name=filename id=filename&gt;
&lt;input type=&quot;submit&quot; name=&quot;upload&quot; value=&quot;upload&quot; /&gt;
&lt;/form&gt;

</pre></p>
<br />Filed under: <a href='http://patelmilap.wordpress.com/category/php/'>php</a> Tagged: <a href='http://patelmilap.wordpress.com/tag/php/'>php</a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/patelmilap.wordpress.com/562/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/patelmilap.wordpress.com/562/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/patelmilap.wordpress.com/562/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/patelmilap.wordpress.com/562/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/patelmilap.wordpress.com/562/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/patelmilap.wordpress.com/562/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/patelmilap.wordpress.com/562/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/patelmilap.wordpress.com/562/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/patelmilap.wordpress.com/562/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/patelmilap.wordpress.com/562/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/patelmilap.wordpress.com/562/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/patelmilap.wordpress.com/562/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/patelmilap.wordpress.com/562/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/patelmilap.wordpress.com/562/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=patelmilap.wordpress.com&amp;blog=18956015&amp;post=562&amp;subd=patelmilap&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://patelmilap.wordpress.com/2012/01/30/php-file-upload/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<georss:point>23.039574 72.566020</georss:point>
		<geo:lat>23.039574</geo:lat>
		<geo:long>72.566020</geo:long>
		<media:content url="http://0.gravatar.com/avatar/cd9a15a0c24fe31f37e3dbb32d39d16c?s=96&#38;d=&#38;r=G" medium="image">
			<media:title type="html">patelmilap</media:title>
		</media:content>
	</item>
		<item>
		<title>Find duplicate records in mysql</title>
		<link>http://patelmilap.wordpress.com/2012/01/25/find-duplicate-records-in-mysql/</link>
		<comments>http://patelmilap.wordpress.com/2012/01/25/find-duplicate-records-in-mysql/#comments</comments>
		<pubDate>Wed, 25 Jan 2012 12:53:35 +0000</pubDate>
		<dc:creator>Milap</dc:creator>
				<category><![CDATA[MySql]]></category>
		<category><![CDATA[mysql]]></category>

		<guid isPermaLink="false">http://patelmilap.wordpress.com/?p=552</guid>
		<description><![CDATA[When you need to fetch duplicate records from mysql database , run below query in your phpmyadmin interface. Filed under: MySql Tagged: mysql<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=patelmilap.wordpress.com&amp;blog=18956015&amp;post=552&amp;subd=patelmilap&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>When you need to fetch duplicate records from mysql database , run below query in your phpmyadmin interface.</p>
<p><pre class="brush: plain;">

SELECT count('fieldname') AS c FROM 'tablename' GROUP BY 'fieldname1','fieldname1'
HAVING c&gt;1

</pre></p>
<br />Filed under: <a href='http://patelmilap.wordpress.com/category/mysql/'>MySql</a> Tagged: <a href='http://patelmilap.wordpress.com/tag/mysql-2/'>mysql</a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/patelmilap.wordpress.com/552/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/patelmilap.wordpress.com/552/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/patelmilap.wordpress.com/552/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/patelmilap.wordpress.com/552/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/patelmilap.wordpress.com/552/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/patelmilap.wordpress.com/552/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/patelmilap.wordpress.com/552/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/patelmilap.wordpress.com/552/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/patelmilap.wordpress.com/552/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/patelmilap.wordpress.com/552/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/patelmilap.wordpress.com/552/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/patelmilap.wordpress.com/552/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/patelmilap.wordpress.com/552/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/patelmilap.wordpress.com/552/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=patelmilap.wordpress.com&amp;blog=18956015&amp;post=552&amp;subd=patelmilap&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://patelmilap.wordpress.com/2012/01/25/find-duplicate-records-in-mysql/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<georss:point>23.039574 72.566020</georss:point>
		<geo:lat>23.039574</geo:lat>
		<geo:long>72.566020</geo:long>
		<media:content url="http://0.gravatar.com/avatar/cd9a15a0c24fe31f37e3dbb32d39d16c?s=96&#38;d=&#38;r=G" medium="image">
			<media:title type="html">patelmilap</media:title>
		</media:content>
	</item>
		<item>
		<title>Create an array : Javascript</title>
		<link>http://patelmilap.wordpress.com/2012/01/07/create-an-array-javascript/</link>
		<comments>http://patelmilap.wordpress.com/2012/01/07/create-an-array-javascript/#comments</comments>
		<pubDate>Sat, 07 Jan 2012 13:49:19 +0000</pubDate>
		<dc:creator>Milap</dc:creator>
				<category><![CDATA[Javascript]]></category>
		<category><![CDATA[array]]></category>

		<guid isPermaLink="false">http://patelmilap.wordpress.com/?p=536</guid>
		<description><![CDATA[You can create your own JavaScript array as shown below. Filed under: Javascript Tagged: array, Javascript<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=patelmilap.wordpress.com&amp;blog=18956015&amp;post=536&amp;subd=patelmilap&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>You can create your own <span class="zem_slink">JavaScript</span> array as shown below.</p>
<p><pre class="brush: jscript;">

&lt;script type=&quot;text/javascript&quot;&gt;

var i;
 var languageArray = new Array();
 languageArray[0]    =    &quot;English&quot;;
 languageArray[1]    =    &quot;Gujrati&quot;;
 languageArray[2]    =    &quot;Hindi&quot;;
 languageArray[3]    =    &quot;Punjabi&quot;;

for(i=0; i&lt;languageArray.length; i++) {
 document.write(languageArray[i] + &quot;&lt;br&gt;&quot;);
 }
 &lt;/script&gt;
</pre><br />
<pre class="brush: plain;">
Output : -

English
Gujrati
Hindi
Punjabi

</pre></p>
<br />Filed under: <a href='http://patelmilap.wordpress.com/category/javascript/'>Javascript</a> Tagged: <a href='http://patelmilap.wordpress.com/tag/array/'>array</a>, <a href='http://patelmilap.wordpress.com/tag/javascript/'>Javascript</a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/patelmilap.wordpress.com/536/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/patelmilap.wordpress.com/536/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/patelmilap.wordpress.com/536/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/patelmilap.wordpress.com/536/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/patelmilap.wordpress.com/536/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/patelmilap.wordpress.com/536/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/patelmilap.wordpress.com/536/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/patelmilap.wordpress.com/536/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/patelmilap.wordpress.com/536/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/patelmilap.wordpress.com/536/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/patelmilap.wordpress.com/536/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/patelmilap.wordpress.com/536/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/patelmilap.wordpress.com/536/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/patelmilap.wordpress.com/536/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=patelmilap.wordpress.com&amp;blog=18956015&amp;post=536&amp;subd=patelmilap&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://patelmilap.wordpress.com/2012/01/07/create-an-array-javascript/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<georss:point>23.039574 72.566020</georss:point>
		<geo:lat>23.039574</geo:lat>
		<geo:long>72.566020</geo:long>
		<media:content url="http://0.gravatar.com/avatar/cd9a15a0c24fe31f37e3dbb32d39d16c?s=96&#38;d=&#38;r=G" medium="image">
			<media:title type="html">patelmilap</media:title>
		</media:content>
	</item>
		<item>
		<title>Create Your Own Objects : JavaScript</title>
		<link>http://patelmilap.wordpress.com/2012/01/07/create-your-own-objects-javascript/</link>
		<comments>http://patelmilap.wordpress.com/2012/01/07/create-your-own-objects-javascript/#comments</comments>
		<pubDate>Sat, 07 Jan 2012 13:31:52 +0000</pubDate>
		<dc:creator>Milap</dc:creator>
				<category><![CDATA[Javascript]]></category>
		<category><![CDATA[Programming]]></category>

		<guid isPermaLink="false">http://patelmilap.wordpress.com/?p=532</guid>
		<description><![CDATA[You can create your own JavaScript object given by below. Filed under: Javascript Tagged: Javascript, Programming<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=patelmilap.wordpress.com&amp;blog=18956015&amp;post=532&amp;subd=patelmilap&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>You can create your own JavaScript object given by below.</p>
<p><pre class="brush: jscript;">

&lt;script type=&quot;text/javascript&quot;&gt;
 objPerson    =    new Object();
 objPerson.fname    =    &quot;Milap&quot;;
 objPerson.lname    =    &quot;Patel&quot;;
 objPerson.age    =    &quot;24&quot;;
 document.write(objPerson.age);
 &lt;/script&gt;

objectname = new Object();
 will create JavaScript object named &quot;objectname&quot;.

fname and lname are methods and we can assign values to object,
 objPerson.age    =    &quot;24&quot;;

</pre></p>
<br />Filed under: <a href='http://patelmilap.wordpress.com/category/javascript/'>Javascript</a> Tagged: <a href='http://patelmilap.wordpress.com/tag/javascript/'>Javascript</a>, <a href='http://patelmilap.wordpress.com/tag/programming/'>Programming</a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/patelmilap.wordpress.com/532/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/patelmilap.wordpress.com/532/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/patelmilap.wordpress.com/532/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/patelmilap.wordpress.com/532/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/patelmilap.wordpress.com/532/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/patelmilap.wordpress.com/532/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/patelmilap.wordpress.com/532/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/patelmilap.wordpress.com/532/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/patelmilap.wordpress.com/532/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/patelmilap.wordpress.com/532/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/patelmilap.wordpress.com/532/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/patelmilap.wordpress.com/532/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/patelmilap.wordpress.com/532/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/patelmilap.wordpress.com/532/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=patelmilap.wordpress.com&amp;blog=18956015&amp;post=532&amp;subd=patelmilap&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://patelmilap.wordpress.com/2012/01/07/create-your-own-objects-javascript/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<georss:point>23.039574 72.566020</georss:point>
		<geo:lat>23.039574</geo:lat>
		<geo:long>72.566020</geo:long>
		<media:content url="http://0.gravatar.com/avatar/cd9a15a0c24fe31f37e3dbb32d39d16c?s=96&#38;d=&#38;r=G" medium="image">
			<media:title type="html">patelmilap</media:title>
		</media:content>
	</item>
		<item>
		<title>htaccess 301 redirect</title>
		<link>http://patelmilap.wordpress.com/2012/01/05/htaccess/</link>
		<comments>http://patelmilap.wordpress.com/2012/01/05/htaccess/#comments</comments>
		<pubDate>Thu, 05 Jan 2012 18:12:00 +0000</pubDate>
		<dc:creator>Milap</dc:creator>
				<category><![CDATA[php]]></category>
		<category><![CDATA[.htaccess]]></category>
		<category><![CDATA[Query string]]></category>
		<category><![CDATA[Uniform Resource Locator]]></category>
		<category><![CDATA[URL redirection]]></category>

		<guid isPermaLink="false">http://patelmilap.wordpress.com/?p=520</guid>
		<description><![CDATA[When you need to redirect your page based on query string from URL, you can put below code in your .htaccess file ! REQUEST_URI will return name of the executed file. QUERY_STRING will return query string variables in URL. After you add above code in htaccess , all array.php pages with query string id &#38; [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=patelmilap.wordpress.com&amp;blog=18956015&amp;post=520&amp;subd=patelmilap&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>When you need to redirect your page based on <strong>query string</strong> from URL, you can put below code in your .htaccess file !</p>
<p><pre class="brush: plain;">

RewriteEngine on
 RewriteCond %{REQUEST_URI}  ^/array\.php$
 RewriteCond %{QUERY_STRING} ^id=([0-9]*)&amp;name=([a-z]*)$
 RewriteRule ^(.*)$ http://mywebsite.com/index.php? [R=302,L]

</pre></p>
<p>REQUEST_URI will return name of the executed file.<br />
QUERY_STRING will return query string variables in URL.</p>
<p>After you add above code in htaccess , all array.php pages with query string id &amp; name will redirect to http://mywebsite.com/index.php.</p>
<br />Filed under: <a href='http://patelmilap.wordpress.com/category/php/'>php</a> Tagged: <a href='http://patelmilap.wordpress.com/tag/htaccess/'>.htaccess</a>, <a href='http://patelmilap.wordpress.com/tag/php/'>php</a>, <a href='http://patelmilap.wordpress.com/tag/query-string/'>Query string</a>, <a href='http://patelmilap.wordpress.com/tag/uniform-resource-locator/'>Uniform Resource Locator</a>, <a href='http://patelmilap.wordpress.com/tag/url-redirection/'>URL redirection</a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/patelmilap.wordpress.com/520/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/patelmilap.wordpress.com/520/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/patelmilap.wordpress.com/520/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/patelmilap.wordpress.com/520/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/patelmilap.wordpress.com/520/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/patelmilap.wordpress.com/520/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/patelmilap.wordpress.com/520/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/patelmilap.wordpress.com/520/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/patelmilap.wordpress.com/520/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/patelmilap.wordpress.com/520/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/patelmilap.wordpress.com/520/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/patelmilap.wordpress.com/520/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/patelmilap.wordpress.com/520/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/patelmilap.wordpress.com/520/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=patelmilap.wordpress.com&amp;blog=18956015&amp;post=520&amp;subd=patelmilap&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://patelmilap.wordpress.com/2012/01/05/htaccess/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<georss:point>23.039574 72.566020</georss:point>
		<geo:lat>23.039574</geo:lat>
		<geo:long>72.566020</geo:long>
		<media:content url="http://0.gravatar.com/avatar/cd9a15a0c24fe31f37e3dbb32d39d16c?s=96&#38;d=&#38;r=G" medium="image">
			<media:title type="html">patelmilap</media:title>
		</media:content>
	</item>
		<item>
		<title>Resetting Magento Admin Password</title>
		<link>http://patelmilap.wordpress.com/2011/12/02/resetting-magento-admin-password/</link>
		<comments>http://patelmilap.wordpress.com/2011/12/02/resetting-magento-admin-password/#comments</comments>
		<pubDate>Fri, 02 Dec 2011 12:52:33 +0000</pubDate>
		<dc:creator>Milap</dc:creator>
				<category><![CDATA[Magento]]></category>
		<category><![CDATA[magento]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://patelmilap.wordpress.com/?p=450</guid>
		<description><![CDATA[Reset password in magento<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=patelmilap.wordpress.com&amp;blog=18956015&amp;post=450&amp;subd=patelmilap&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>There are many cases when you forget magento admin password .</p>
<p>For security reasons magento stores password inform of MD5 format in database , so you cant get password directly through phpmyadmin interface.</p>
<p>You can reset password using 2 methods :-</p>
<p>1) First find under which user you want to change password using below query:-</p>
<p><pre class="brush: plain;">

&quot;SELECT * FROM `admin_user`;&quot;

</pre></p>
<p>Now, to reset password run below query,</p>
<p><pre class="brush: plain;">

UPDATE `admin_user` SET `password`= MD5(&quot;newpassword&quot;) WHERE `username`='admin';</pre></p>
<p>2) Go to phpmyadmin.Browse admin_user table . Edit specific record you want to update . While you change password in `password` field, select MD5 from dropdown under <strong>Function</strong> section &amp; enter your password , it will store your password in MD5 format.</p>
<p>See below Screenshot for better idea :-</p>
<p><a href="http://patelmilap.files.wordpress.com/2011/12/reset_password1.png"><img class="alignnone size-full wp-image-467" title="Resetting Admin Password" src="http://patelmilap.files.wordpress.com/2011/12/reset_password1.png?w=570&#038;h=438" alt="Resetting Admin Password" width="570" height="438" /></a></p>
<p>You are Done !!</p>
<p>Now try to login with new password !!</p>
<br />Filed under: <a href='http://patelmilap.wordpress.com/category/magento/'>Magento</a> Tagged: <a href='http://patelmilap.wordpress.com/tag/magento-2/'>magento</a>, <a href='http://patelmilap.wordpress.com/tag/mysql-2/'>mysql</a>, <a href='http://patelmilap.wordpress.com/tag/php/'>php</a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/patelmilap.wordpress.com/450/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/patelmilap.wordpress.com/450/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/patelmilap.wordpress.com/450/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/patelmilap.wordpress.com/450/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/patelmilap.wordpress.com/450/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/patelmilap.wordpress.com/450/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/patelmilap.wordpress.com/450/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/patelmilap.wordpress.com/450/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/patelmilap.wordpress.com/450/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/patelmilap.wordpress.com/450/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/patelmilap.wordpress.com/450/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/patelmilap.wordpress.com/450/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/patelmilap.wordpress.com/450/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/patelmilap.wordpress.com/450/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=patelmilap.wordpress.com&amp;blog=18956015&amp;post=450&amp;subd=patelmilap&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://patelmilap.wordpress.com/2011/12/02/resetting-magento-admin-password/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<georss:point>23.039574 72.566020</georss:point>
		<geo:lat>23.039574</geo:lat>
		<geo:long>72.566020</geo:long>
		<media:content url="http://0.gravatar.com/avatar/cd9a15a0c24fe31f37e3dbb32d39d16c?s=96&#38;d=&#38;r=G" medium="image">
			<media:title type="html">patelmilap</media:title>
		</media:content>

		<media:content url="http://patelmilap.files.wordpress.com/2011/12/reset_password1.png" medium="image">
			<media:title type="html">Resetting Admin Password</media:title>
		</media:content>
	</item>
		<item>
		<title>Setting up your favicon.ico</title>
		<link>http://patelmilap.wordpress.com/2011/10/01/setting-up-your-favicon-ico/</link>
		<comments>http://patelmilap.wordpress.com/2011/10/01/setting-up-your-favicon-ico/#comments</comments>
		<pubDate>Sat, 01 Oct 2011 06:28:31 +0000</pubDate>
		<dc:creator>Milap</dc:creator>
				<category><![CDATA[Html]]></category>
		<category><![CDATA[HTML]]></category>

		<guid isPermaLink="false">http://patelmilap.wordpress.com/?p=363</guid>
		<description><![CDATA[Sometimes it looks simple to Setup favicon icon for your website, but it is also quite useful when we start to set favicon as i do. First , upload favicon.ico file in your root directory (most of times in public_html). Just put below tag in your index file OR whichever common file for your project. [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=patelmilap.wordpress.com&amp;blog=18956015&amp;post=363&amp;subd=patelmilap&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Sometimes it looks simple to Setup favicon icon for your website, but it is also quite useful when we start to set favicon as i do.</p>
<p>First , upload favicon.ico file in your root directory (most of times in public_html).</p>
<p>Just put below tag in your index file OR whichever common file for your project.</p>
<p><pre class="brush: xml;">

&lt;link rel=”FaviconIcon” href=”favicon.ico” type=”image/x-icon” /&gt;

</pre></p>
<p>You are done..<br />
This will display favicon icon in the starting of your Address Bar as well as in your current browser tab.<br />
Although new browsers support GIF and PNG images , but , I would suggest always saving the image as favicon.ico.</p>
<br />Filed under: <a href='http://patelmilap.wordpress.com/category/html/'>Html</a> Tagged: <a href='http://patelmilap.wordpress.com/tag/html-2/'>HTML</a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/patelmilap.wordpress.com/363/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/patelmilap.wordpress.com/363/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/patelmilap.wordpress.com/363/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/patelmilap.wordpress.com/363/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/patelmilap.wordpress.com/363/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/patelmilap.wordpress.com/363/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/patelmilap.wordpress.com/363/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/patelmilap.wordpress.com/363/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/patelmilap.wordpress.com/363/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/patelmilap.wordpress.com/363/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/patelmilap.wordpress.com/363/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/patelmilap.wordpress.com/363/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/patelmilap.wordpress.com/363/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/patelmilap.wordpress.com/363/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=patelmilap.wordpress.com&amp;blog=18956015&amp;post=363&amp;subd=patelmilap&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://patelmilap.wordpress.com/2011/10/01/setting-up-your-favicon-ico/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/cd9a15a0c24fe31f37e3dbb32d39d16c?s=96&#38;d=&#38;r=G" medium="image">
			<media:title type="html">patelmilap</media:title>
		</media:content>
	</item>
		<item>
		<title>PHP array_walk() Function</title>
		<link>http://patelmilap.wordpress.com/2011/09/17/php-array_walk-function/</link>
		<comments>http://patelmilap.wordpress.com/2011/09/17/php-array_walk-function/#comments</comments>
		<pubDate>Sat, 17 Sep 2011 04:59:15 +0000</pubDate>
		<dc:creator>Milap</dc:creator>
				<category><![CDATA[Array Functions]]></category>
		<category><![CDATA[array]]></category>
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://patelmilap.wordpress.com/?p=337</guid>
		<description><![CDATA[array_walk is one of the powerful array function , which is working based on user defined function as an argument. Here is the small example below. Small Explanation :- add_string function is passed as an argument in array_walk function, it means, the logic of add_string will apply to each element of array. 3rd parameter is [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=patelmilap.wordpress.com&amp;blog=18956015&amp;post=337&amp;subd=patelmilap&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a href="http://php.net/manual/en/function.array-walk.php" target="_blank">array_walk</a> is one of the powerful array function , which is working based on user defined function as an argument. Here is the small example below.</p>
<p><pre class="brush: php;">

&lt;?php
 function add_string($val,$key,$par) {
 echo $val.&quot; &quot;.$par. &quot; &lt;br /&gt;&quot;;
 }
 echo &quot;Hello, Good Morning &lt;br /&gt;&quot;;
 $a    =    array(&quot;Milap&quot;,&quot;Jay&quot;,&quot;Parthiv&quot;,&quot;Sandip&quot;,&quot;Smit&quot;);
 array_walk($a,'add_string','Loves PHP');
 ?&gt;
</pre><br />
<pre class="brush: xml;">
Output :-

Hello, Good Morning
Milap Loves PHP
Jay Loves PHP
Parthiv Loves PHP
Sandip Loves PHP
Smit Loves PHP

</pre></p>
<p>Small Explanation :-</p>
<p>add_string function is passed as an argument in array_walk function, it means, the logic of add_string will apply to each element of array. 3rd parameter is optional.</p>
<br />Filed under: <a href='http://patelmilap.wordpress.com/category/php/array-functions/'>Array Functions</a> Tagged: <a href='http://patelmilap.wordpress.com/tag/array/'>array</a>, <a href='http://patelmilap.wordpress.com/tag/php/'>php</a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/patelmilap.wordpress.com/337/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/patelmilap.wordpress.com/337/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/patelmilap.wordpress.com/337/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/patelmilap.wordpress.com/337/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/patelmilap.wordpress.com/337/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/patelmilap.wordpress.com/337/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/patelmilap.wordpress.com/337/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/patelmilap.wordpress.com/337/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/patelmilap.wordpress.com/337/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/patelmilap.wordpress.com/337/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/patelmilap.wordpress.com/337/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/patelmilap.wordpress.com/337/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/patelmilap.wordpress.com/337/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/patelmilap.wordpress.com/337/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=patelmilap.wordpress.com&amp;blog=18956015&amp;post=337&amp;subd=patelmilap&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://patelmilap.wordpress.com/2011/09/17/php-array_walk-function/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<georss:point>23.039574 72.566020</georss:point>
		<geo:lat>23.039574</geo:lat>
		<geo:long>72.566020</geo:long>
		<media:content url="http://0.gravatar.com/avatar/cd9a15a0c24fe31f37e3dbb32d39d16c?s=96&#38;d=&#38;r=G" medium="image">
			<media:title type="html">patelmilap</media:title>
		</media:content>
	</item>
		<item>
		<title>How to create an image rotator with jquery and css</title>
		<link>http://patelmilap.wordpress.com/2011/09/15/how-to-create-an-image-rotator-with-jquery-and-css/</link>
		<comments>http://patelmilap.wordpress.com/2011/09/15/how-to-create-an-image-rotator-with-jquery-and-css/#comments</comments>
		<pubDate>Thu, 15 Sep 2011 07:39:09 +0000</pubDate>
		<dc:creator>Milap</dc:creator>
				<category><![CDATA[jquery]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[JQuery]]></category>

		<guid isPermaLink="false">http://patelmilap.wordpress.com/?p=323</guid>
		<description><![CDATA[Whenever you need to display random images (more than 1 image) , you can do it using simple jquery cycle plugin. Here is the small explanation :- Download jquery.js from http://ajax.googleapis.com/ajax/libs/jquery/1.6.4/jquery.min.js Download jquery.cycle.all.js from http://malsup.github.com/jquery.cycle.all.js Include both .js files in header . add following CSS There are many options to set time for fading effect [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=patelmilap.wordpress.com&amp;blog=18956015&amp;post=323&amp;subd=patelmilap&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Whenever you need to display random images (more than 1 image) ,<br />
you can do it using simple jquery cycle plugin.</p>
<p>Here is the small explanation :-</p>
<p><pre class="brush: jscript;">

&lt;script type=&quot;text/javascript&quot; src=&quot;jquery.js&quot;&gt;&lt;/script&gt;
 &lt;script type=&quot;text/javascript&quot; src=&quot;jquery.cycle.all.js&quot;&gt;&lt;/script&gt;
 &lt;script type=&quot;text/javascript&quot;&gt;
 $(document).ready(function(){
 $('#&lt;em&gt;&lt;strong&gt;imagediv&lt;/strong&gt;&lt;/em&gt;').cycle({
 fx:    'fade',
 speed:  2500
 });
 });
 &lt;/script&gt;

</pre></p>
<p><pre class="brush: xml;">
&lt;div id=&quot;&lt;em&gt;&lt;strong&gt;imagediv&lt;/strong&gt;&lt;/em&gt;&quot;&gt;
 &lt;img src=&quot;image1.jpg&quot;  alt=&quot;image1&quot; /&gt;
 &lt;img src=&quot;image2.jpg&quot; alt=&quot;image2&quot; /&gt;
 &lt;img src=&quot;image3.jpg alt=&quot;image3&quot; /&gt;
 &lt;img src=&quot;image4.jpg  alt=&quot;image4&quot; /&gt;
 &lt;img src=&quot;image5.jpg alt=&quot;image5&quot; /&gt;
 &lt;/div&gt;
</pre></p>
<ol>
<li>Download jquery.js from <a href="http://ajax.googleapis.com/ajax/libs/jquery/1.6.4/jquery.min.js" target="_blank">http://ajax.googleapis.com/ajax/libs/jquery/1.6.4/jquery.min.js</a></li>
<li>Download jquery.cycle.all.js from <a href="http://malsup.github.com/jquery.cycle.all.js" target="_blank">http://malsup.github.com/jquery.cycle.all.js</a></li>
<li>Include both .js files in header .</li>
<li>add following CSS<br />
<pre class="brush: php;">
.pics {
height: 117px;
margin: 0;
overflow: hidden;
padding: 0;
width: 354px;
}
</pre></li>
</ol>
<p>There are many options to set time for fading effect &amp; all..</p>
<p>You can refer <a href="http://jquery.malsup.com/cycle/" target="_blank">http://jquery.malsup.com/cycle</a> for more option &amp; customization jQuery cycle plugin.</p>
<p>Thats it ..</p>
<p>Done.. Enjoy !!!</p>
<br />Filed under: <a href='http://patelmilap.wordpress.com/category/jquery/'>jquery</a> Tagged: <a href='http://patelmilap.wordpress.com/tag/css/'>css</a>, <a href='http://patelmilap.wordpress.com/tag/javascript/'>Javascript</a>, <a href='http://patelmilap.wordpress.com/tag/jquery-2/'>JQuery</a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/patelmilap.wordpress.com/323/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/patelmilap.wordpress.com/323/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/patelmilap.wordpress.com/323/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/patelmilap.wordpress.com/323/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/patelmilap.wordpress.com/323/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/patelmilap.wordpress.com/323/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/patelmilap.wordpress.com/323/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/patelmilap.wordpress.com/323/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/patelmilap.wordpress.com/323/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/patelmilap.wordpress.com/323/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/patelmilap.wordpress.com/323/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/patelmilap.wordpress.com/323/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/patelmilap.wordpress.com/323/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/patelmilap.wordpress.com/323/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=patelmilap.wordpress.com&amp;blog=18956015&amp;post=323&amp;subd=patelmilap&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://patelmilap.wordpress.com/2011/09/15/how-to-create-an-image-rotator-with-jquery-and-css/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<georss:point>23.039574 72.566020</georss:point>
		<geo:lat>23.039574</geo:lat>
		<geo:long>72.566020</geo:long>
		<media:content url="http://0.gravatar.com/avatar/cd9a15a0c24fe31f37e3dbb32d39d16c?s=96&#38;d=&#38;r=G" medium="image">
			<media:title type="html">patelmilap</media:title>
		</media:content>
	</item>
		<item>
		<title>List of deprecated functions php</title>
		<link>http://patelmilap.wordpress.com/2011/09/07/list-of-deprecated-functions-php/</link>
		<comments>http://patelmilap.wordpress.com/2011/09/07/list-of-deprecated-functions-php/#comments</comments>
		<pubDate>Wed, 07 Sep 2011 01:15:03 +0000</pubDate>
		<dc:creator>Milap</dc:creator>
				<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://patelmilap.wordpress.com/?p=314</guid>
		<description><![CDATA[The following is a list of deprecated functions in PHP 5.3.x. call_user_method() (use call_user_func() instead) call_user_method_array() (use call_user_func_array() instead) define_syslog_variables() dl() ereg() (use preg_match() instead) ereg_replace() (use preg_replace() instead) eregi() (use preg_match() with the &#8216;i&#8217; modifier instead) eregi_replace() (use preg_replace() with the &#8216;i&#8217; modifier instead) set_magic_quotes_runtime() and its alias, magic_quotes_runtime() session_register() (use the $_SESSION superglobal instead) session_unregister() (use the $_SESSION superglobal instead) session_is_registered() (use the $_SESSION superglobal instead) set_socket_blocking() (use stream_set_blocking() instead) split() (use preg_split() instead) spliti() (use preg_split() with the &#8216;i&#8217; modifier instead) sql_regcase() mysql_db_query() (use mysql_select_db() and mysql_query() instead) mysql_escape_string() (use mysql_real_escape_string() instead) Passing locale category names as strings is now deprecated. Use the LC_* family [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=patelmilap.wordpress.com&amp;blog=18956015&amp;post=314&amp;subd=patelmilap&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>The following is a list of deprecated functions in PHP 5.3.x.</p>
<ul>
<li><a href="http://www.php.net/manual/en/function.call-user-method.php" target="_blank">call_user_method()</a> (use <a href="http://www.php.net/manual/en/function.call-user-func.php" target="_blank">call_user_func()</a> instead)</li>
<li><a href="http://www.php.net/manual/en/function.call-user-method-array.php" target="_blank">call_user_method_array()</a> (use <a href="http://www.php.net/manual/en/function.call-user-func-array.php" target="_blank">call_user_func_array()</a> instead)</li>
<li><a href="http://www.php.net/manual/en/function.define-syslog-variables.php" target="_blank">define_syslog_variables()</a></li>
<li><a href="http://www.php.net/manual/en/function.dl.php" target="_blank">dl()</a></li>
<li><a href="http://www.php.net/manual/en/function.ereg.php" target="_blank">ereg()</a> (use <a href="http://www.php.net/manual/en/function.preg-match.php" target="_blank">preg_match()</a> instead)</li>
<li><a href="http://www.php.net/manual/en/function.ereg-replace.php" target="_blank">ereg_replace()</a> (use<a href="http://www.php.net/manual/en/function.preg-replace.php" target="_blank"> preg_replace()</a> instead)</li>
<li><a href="http://www.php.net/manual/en/function.eregi.php">eregi()</a> (use <a href="http://www.php.net/manual/en/function.preg-match.php">preg_match()</a> with the <em>&#8216;i&#8217;</em> modifier instead)</li>
<li><a href="http://www.php.net/manual/en/function.eregi-replace.php">eregi_replace()</a> (use <a href="http://www.php.net/manual/en/function.preg-replace.php" target="_blank">preg_replace()</a> with the <em>&#8216;i&#8217;</em> modifier instead)</li>
<li><a href="http://www.php.net/manual/en/function.set-magic-quotes-runtime.php" target="_blank">set_magic_quotes_runtime()</a> and its alias,<a href="http://www.php.net/manual/en/function.magic-quotes-runtime.php" target="_blank"> magic_quotes_runtime()</a></li>
<li><a href="http://www.php.net/manual/en/function.session-register.php" target="_blank">session_register()</a> (use the<a href="http://www.php.net/manual/en/reserved.variables.session.php" target="_blank"> </a><a href="http://www.php.net/manual/en/reserved.variables.session.php" target="_blank"><var></var><var>$_SESSION</var></a> superglobal instead)</li>
<li><a href="http://www.php.net/manual/en/function.session-unregister.php" target="_blank">session_unregister()</a> (use the <a href="http://www.php.net/manual/en/reserved.variables.session.php" target="_blank"><var></var><var>$_SESSION</var></a> superglobal instead)</li>
<li><a href="http://www.php.net/manual/en/function.session-is-registered.php" target="_blank">session_is_registered()</a> (use the<a href="http://www.php.net/manual/en/reserved.variables.session.php" target="_blank"> <var></var><var>$_SESSION</var></a> superglobal instead)</li>
<li><a href="http://www.php.net/manual/en/function.set-socket-blocking.php" target="_blank">set_socket_blocking()</a> (use <a href="http://www.php.net/manual/en/function.stream-set-blocking.php" target="_blank">stream_set_blocking()</a> instead)</li>
<li><a href="http://www.php.net/manual/en/function.split.php" target="_blank">split()</a> (use <a href="http://www.php.net/manual/en/function.preg-split.php" target="_blank">preg_split()</a> instead)</li>
<li><a href="http://www.php.net/manual/en/function.spliti.php" target="_blank">spliti()</a> (use <a href="http://www.php.net/manual/en/function.preg-split.php" target="_blank">preg_split()</a> with the <em>&#8216;i&#8217;</em> modifier instead)</li>
<li><a href="http://www.php.net/manual/en/function.sql-regcase.php" target="_blank">sql_regcase()</a></li>
<li><a href="http://www.php.net/manual/en/function.mysql-db-query.php" target="_blank">mysql_db_query()</a> (use <a href="http://www.php.net/manual/en/function.mysql-select-db.php" target="_blank">mysql_select_db()</a> and <a href="http://www.php.net/manual/en/function.mysql-query.php" target="_blank">mysql_query()</a> instead)</li>
<li><a href="http://www.php.net/manual/en/function.mysql-escape-string.php" target="_blank">mysql_escape_string()</a> (use <a href="http://www.php.net/manual/en/function.mysql-real-escape-string.php" target="_blank">mysql_real_escape_string()</a> instead)</li>
<li>Passing locale category names as strings is now deprecated. Use the LC_* family of constants instead.</li>
<li>The <em><tt>is_dst</tt></em> parameter to <a href="http://www.php.net/manual/en/function.mktime.php">mktime()</a>. Use the new timezone handling functions instead.</li>
</ul>
<br />Filed under: <a href='http://patelmilap.wordpress.com/category/php/'>php</a> Tagged: <a href='http://patelmilap.wordpress.com/tag/php/'>php</a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/patelmilap.wordpress.com/314/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/patelmilap.wordpress.com/314/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/patelmilap.wordpress.com/314/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/patelmilap.wordpress.com/314/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/patelmilap.wordpress.com/314/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/patelmilap.wordpress.com/314/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/patelmilap.wordpress.com/314/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/patelmilap.wordpress.com/314/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/patelmilap.wordpress.com/314/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/patelmilap.wordpress.com/314/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/patelmilap.wordpress.com/314/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/patelmilap.wordpress.com/314/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/patelmilap.wordpress.com/314/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/patelmilap.wordpress.com/314/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=patelmilap.wordpress.com&amp;blog=18956015&amp;post=314&amp;subd=patelmilap&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://patelmilap.wordpress.com/2011/09/07/list-of-deprecated-functions-php/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<georss:point>23.039574 72.566020</georss:point>
		<geo:lat>23.039574</geo:lat>
		<geo:long>72.566020</geo:long>
		<media:content url="http://0.gravatar.com/avatar/cd9a15a0c24fe31f37e3dbb32d39d16c?s=96&#38;d=&#38;r=G" medium="image">
			<media:title type="html">patelmilap</media:title>
		</media:content>
	</item>
	</channel>
</rss>
