<?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>PHP programming tips,tutorial,scripts and PHP jobs</title>
	<atom:link href="http://basheerahamed.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://basheerahamed.wordpress.com</link>
	<description>PHP programming tips,tutorial,scripts and PHP jobs</description>
	<lastBuildDate>Fri, 10 Jun 2011 13:34:51 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='basheerahamed.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://1.gravatar.com/blavatar/57b7bc214efb30b7fe3647b5fcc0bdf2?s=96&#038;d=http%3A%2F%2Fs2.wp.com%2Fi%2Fbuttonw-com.png</url>
		<title>PHP programming tips,tutorial,scripts and PHP jobs</title>
		<link>http://basheerahamed.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://basheerahamed.wordpress.com/osd.xml" title="PHP programming tips,tutorial,scripts and PHP jobs" />
	<atom:link rel='hub' href='http://basheerahamed.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Variable Operations</title>
		<link>http://basheerahamed.wordpress.com/2011/06/10/82/</link>
		<comments>http://basheerahamed.wordpress.com/2011/06/10/82/#comments</comments>
		<pubDate>Fri, 10 Jun 2011 13:34:48 +0000</pubDate>
		<dc:creator>Basheer Ahamed</dc:creator>
				<category><![CDATA[php programming tips]]></category>

		<guid isPermaLink="false">http://basheerahamed.wordpress.com/?p=82</guid>
		<description><![CDATA[Variable Operations Operating on an initialized variable is 376% faster than operating on an unitialized variable. Constants are 146% slower than variables Local variables are 9.9% faster than global variables String Functions &#8216;String&#8217; is 0.26% faster than &#8220;String&#8221; &#8220;String&#8221; is 4% faster than HEREDOC syntax &#8220;String\n&#8221; is 108% faster than &#8216;String&#8217;.&#8221;\n&#8221; &#8216;String&#8217;.$var is 28% faster [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=basheerahamed.wordpress.com&amp;blog=10021300&amp;post=82&amp;subd=basheerahamed&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<h2>Variable Operations</h2>
<ul>
<li>Operating on an initialized variable is 376% faster than operating on an unitialized variable.</li>
<li>Constants are 146% slower than variables</li>
<li>Local variables are 9.9% faster than global variables</li>
</ul>
<h3>String Functions</h3>
<ul>
<li>&#8216;String&#8217; is 0.26% faster than &#8220;String&#8221;</li>
<li>&#8220;String&#8221; is 4% faster than HEREDOC syntax</li>
<li>&#8220;String\n&#8221; is 108% faster than &#8216;String&#8217;.&#8221;\n&#8221;</li>
<li>&#8216;String&#8217;.$var is 28% faster than &#8220;String$var&#8221;</li>
<li>&#8216;string &#8216;.$var.&#8217; string&#8217; is 55% faster than sprintf(&#8216;string %s string&#8217;, $var)</li>
<li>&#8220;\n&#8221; is 70% faster than chr(10)</li>
<li>strnatcmp() is 4.95% faster than strcmp()</li>
<li>strcasecmp() is 45% faster than preg_match()</li>
<li>strcasecmp() is 6.6% faster than strtoupper($string) == &#8220;STRING&#8221;</li>
<li>strcasecmp() is 13% faster than strnatcasecmp()</li>
<li>strtr($string, $string1, $string2) is 10% faster than str_replace()</li>
<li>str_replace() is 161% faster than strtr($string, $array)</li>
<li>stristr() is 10% faster than stripos()</li>
<li>strpos() is 9.7% faster than strstr()</li>
<li>isset($str{5}) is 176% faster than strlen($str) &gt; 5</li>
<li>str_replace($str, $str, $str) twice is 17% faster than str_replace(array, array, string)</li>
<li>list() = explode() is 13% faster than substr($str, strpos($str))</li>
</ul>
<h3>Numeric Functions</h3>
<ul>
<li>++$int is 10% faster than $int++</li>
<li>(float) is 48% faster than settype($var, &#8216;float&#8217;)</li>
</ul>
<h3>Array Functions</h3>
<ul>
<li>list() = $array; is 3.4% faster than assigning each variable</li>
<li>in_array() is 6% faster than array_search</li>
<li>isset($array[$key]) is 230% faster than array_key_exists()</li>
<li>!empty($array) is 66% faster than count($array)</li>
</ul>
<h3>Output Functions</h3>
<ul>
<li>echo is 5% faster than print()</li>
<li>echo &#8216; &#8216;.&#8217; &#8216; is 0.44% faster than echo &#8216; &#8216;,&#8217; &#8216;</li>
</ul>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/basheerahamed.wordpress.com/82/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/basheerahamed.wordpress.com/82/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/basheerahamed.wordpress.com/82/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/basheerahamed.wordpress.com/82/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/basheerahamed.wordpress.com/82/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/basheerahamed.wordpress.com/82/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/basheerahamed.wordpress.com/82/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/basheerahamed.wordpress.com/82/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/basheerahamed.wordpress.com/82/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/basheerahamed.wordpress.com/82/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/basheerahamed.wordpress.com/82/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/basheerahamed.wordpress.com/82/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/basheerahamed.wordpress.com/82/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/basheerahamed.wordpress.com/82/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=basheerahamed.wordpress.com&amp;blog=10021300&amp;post=82&amp;subd=basheerahamed&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://basheerahamed.wordpress.com/2011/06/10/82/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/38ad830390794ddb728bffc27943065d?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">basheerahamed</media:title>
		</media:content>
	</item>
		<item>
		<title>Job for frshers as a KM Administrator / Consultant</title>
		<link>http://basheerahamed.wordpress.com/2009/12/02/job-for-frshers-as-a-km-administrator-consultant/</link>
		<comments>http://basheerahamed.wordpress.com/2009/12/02/job-for-frshers-as-a-km-administrator-consultant/#comments</comments>
		<pubDate>Wed, 02 Dec 2009 17:55:29 +0000</pubDate>
		<dc:creator>Basheer Ahamed</dc:creator>
				<category><![CDATA[jobs]]></category>
		<category><![CDATA[php jobs]]></category>
		<category><![CDATA[0bs]]></category>
		<category><![CDATA[fresher recruitment]]></category>
		<category><![CDATA[freshers job]]></category>
		<category><![CDATA[freshers jobs]]></category>
		<category><![CDATA[jobs in chennai]]></category>
		<category><![CDATA[mysql jobs]]></category>

		<guid isPermaLink="false">http://basheerahamed.wordpress.com/?p=46</guid>
		<description><![CDATA[Apitco Limited Recruits KM Administrator / Consultant Experience : 0 – 2 Years Location : Hyderabad / Secunderabad Education : UG – B.Tech/B.E. – Computers, Electrical, PG – Post Graduation Not Required Job Description : Promotes facilitates and supports the knowledge management system within the organization- with optimized outputs and process management. Desired Candidate Profile [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=basheerahamed.wordpress.com&amp;blog=10021300&amp;post=46&amp;subd=basheerahamed&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><strong>Apitco Limited Recruits KM Administrator / Consultant</strong></p>
<p><strong>Experience : </strong>0 – 2 Years<br />
<strong>Location : </strong>Hyderabad / Secunderabad<br />
<strong>Education : </strong>UG – B.Tech/B.E. – Computers, Electrical, PG – Post  Graduation Not Required</p>
<p><strong>Job Description :</strong><br />
Promotes facilitates and supports the knowledge management system within the organization- with optimized outputs and process management.</p>
<p><strong>Desired Candidate Profile :</strong><br />
BE (ECE) with knowledge on MS SQL server 2000 &amp; 2005 , Clustered SQL servers , replication, log shipping, database mirroring, knowledge on SEC technology platform ,etc</p>
<p><strong>Company Profile :</strong><br />
APITCO is a leading Technical Consultancy Organization (TCO) promoted jointly by all India Financial Institutions (IDBI, IFCI and ICICI), leading nationalized banks and State level corporations.</p>
<p><strong>Company Name :</strong> APITCO Limited<br />
<strong>Website : </strong><a href="http://www.apitco.org/">http://www.apitco.org</a><br />
<strong>Executive Name :</strong> Mr. P Janaki Ram<br />
<strong>Telephone : </strong><img src="//skype_ff_toolbar_win/content/cb_transparent_l.gif" alt="" height="11" /><img src="//skype_ff_toolbar_win/content/flags/in.gif" alt="" /><img src="//skype_ff_toolbar_win/content/space.gif" alt="" width="1" height="1" /><img src="//skype_ff_toolbar_win/content/space.gif" alt="" width="1" height="1" /><img src="//skype_ff_toolbar_win/content/arrow.gif" alt="" /><img src="//skype_ff_toolbar_win/content/space.gif" alt="" width="1" height="1" /><img src="//skype_ff_toolbar_win/content/space.gif" alt="" width="1" height="1" /><img src="//skype_ff_toolbar_win/content/space.gif" alt="" width="1" height="1" /><img src="//skype_ff_toolbar_win/content/space.gif" alt="" width="1" height="1" /><img src="//skype_ff_toolbar_win/content/space.gif" alt="" width="1" height="1" /><img src="//skype_ff_toolbar_win/content/space.gif" alt="" width="1" height="1" /><img src="//skype_ff_toolbar_win/content/space.gif" alt="" width="1" height="1" />040-23237333<img src="//skype_ff_toolbar_win/content/cb_transparent_r.gif" alt="" height="11" /></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/basheerahamed.wordpress.com/46/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/basheerahamed.wordpress.com/46/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/basheerahamed.wordpress.com/46/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/basheerahamed.wordpress.com/46/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/basheerahamed.wordpress.com/46/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/basheerahamed.wordpress.com/46/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/basheerahamed.wordpress.com/46/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/basheerahamed.wordpress.com/46/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/basheerahamed.wordpress.com/46/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/basheerahamed.wordpress.com/46/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/basheerahamed.wordpress.com/46/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/basheerahamed.wordpress.com/46/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/basheerahamed.wordpress.com/46/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/basheerahamed.wordpress.com/46/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=basheerahamed.wordpress.com&amp;blog=10021300&amp;post=46&amp;subd=basheerahamed&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://basheerahamed.wordpress.com/2009/12/02/job-for-frshers-as-a-km-administrator-consultant/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/38ad830390794ddb728bffc27943065d?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">basheerahamed</media:title>
		</media:content>
	</item>
		<item>
		<title>PHP Tips # 5 &#8211; To Remember When Using A PHP Form Generator</title>
		<link>http://basheerahamed.wordpress.com/2009/12/02/php-tips-5-to-remember-when-using-a-php-form-generator/</link>
		<comments>http://basheerahamed.wordpress.com/2009/12/02/php-tips-5-to-remember-when-using-a-php-form-generator/#comments</comments>
		<pubDate>Wed, 02 Dec 2009 17:45:01 +0000</pubDate>
		<dc:creator>Basheer Ahamed</dc:creator>
				<category><![CDATA[php programming tips]]></category>
		<category><![CDATA[php form generator]]></category>
		<category><![CDATA[php tips]]></category>
		<category><![CDATA[php tjps for effective programming]]></category>

		<guid isPermaLink="false">http://basheerahamed.wordpress.com/?p=44</guid>
		<description><![CDATA[When you have an online business, using  this  PHP form Generator always a smart idea. A form generator can help you generator many different forms that you will need on your website. When using a generator, there are some important tips that you need to remember. These tips can help you use the generator more [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=basheerahamed.wordpress.com&amp;blog=10021300&amp;post=44&amp;subd=basheerahamed&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>When you have an online business, using  this  PHP form Generator always a smart idea. A form generator can help you generator many different forms that you will need on your website. When using a generator, there are some important tips that you need to remember.</p>
<p>These tips can help you use the generator more effectively. Here are the most important tips to keep in mind.</p>
<p>1. Be careful when choosing a generator to use because you don’t have to pay for using one. There are many sites online that state that you do have to pay, but there are many free generators online that you can use for free.</p>
<p>This is not saying that you don’t want to pay for a generator if you find a good one that will benefit your business. It just means that you want to be careful and look at all of your options before choosing the best one to use for your particular business.</p>
<p>2. In order to use the generator effectively, you have to take time to learn how to use it. Read any instructions that come with it, try it out and just spend some time getting used to using it. This is the best way to learn how to use it effectively, which is important to the success of your business website.</p>
<p>3. Don’t overwrite your website. In other words, build a good website one page at a time and don’t just stuff a bunch of pages into it because you have the ability to add whatever pages you want to. You want to be sure that you are generating pages that will benefit your business, but will also benefit your customers.</p>
<p>Build a quality website using a form generator and don’t overdo the pages used or it will just look cluttered. This is very unappealing to online customers and will definitely end up hurting your business. It could also end up costing you money when your visitors go to your competition instead of your site.</p>
<p>Always do these things and you will not only be able to use it effectively, but will also end up with a great website that will attract and keep customers coming back. Find a good generator to start using today because this is definitely a tool that every business owner needs to be using.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/basheerahamed.wordpress.com/44/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/basheerahamed.wordpress.com/44/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/basheerahamed.wordpress.com/44/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/basheerahamed.wordpress.com/44/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/basheerahamed.wordpress.com/44/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/basheerahamed.wordpress.com/44/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/basheerahamed.wordpress.com/44/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/basheerahamed.wordpress.com/44/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/basheerahamed.wordpress.com/44/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/basheerahamed.wordpress.com/44/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/basheerahamed.wordpress.com/44/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/basheerahamed.wordpress.com/44/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/basheerahamed.wordpress.com/44/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/basheerahamed.wordpress.com/44/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=basheerahamed.wordpress.com&amp;blog=10021300&amp;post=44&amp;subd=basheerahamed&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://basheerahamed.wordpress.com/2009/12/02/php-tips-5-to-remember-when-using-a-php-form-generator/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/38ad830390794ddb728bffc27943065d?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">basheerahamed</media:title>
		</media:content>
	</item>
		<item>
		<title>PHP TIPS #4 &#8211; Array_diff_uassoc Function in PHP</title>
		<link>http://basheerahamed.wordpress.com/2009/12/01/php-tips-4-array_diff_uassoc-function-in-php/</link>
		<comments>http://basheerahamed.wordpress.com/2009/12/01/php-tips-4-array_diff_uassoc-function-in-php/#comments</comments>
		<pubDate>Tue, 01 Dec 2009 18:23:54 +0000</pubDate>
		<dc:creator>Basheer Ahamed</dc:creator>
				<category><![CDATA[php programming tips]]></category>
		<category><![CDATA[array in php]]></category>
		<category><![CDATA[Array_diff_uassoc]]></category>
		<category><![CDATA[php array]]></category>
		<category><![CDATA[php functions]]></category>
		<category><![CDATA[php tips]]></category>
		<category><![CDATA[php tricks and tips]]></category>

		<guid isPermaLink="false">http://basheerahamed.wordpress.com/?p=35</guid>
		<description><![CDATA[Function Description: array_diff_uassoc() function which compares two or more arrays while checking for differences before comparing the keys with a user-defined location. It then returns an array withthe keys and values from the first array(to which all the values were comapred against) it the function allows it. Syntax is as follows : array_diff_uassoc(array1,array2,array3….,function). with a [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=basheerahamed.wordpress.com&amp;blog=10021300&amp;post=35&amp;subd=basheerahamed&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><strong>Function Description: </strong></p>
<p>array_diff_uassoc() function which compares two or more arrays while checking for differences before comparing the keys with a user-defined location. It then returns an array withthe keys and values from the first array(to which all the values <a href="http://basheerahamed.files.wordpress.com/2009/12/251.jpg"><img class="alignleft size-full wp-image-38" title="25" src="http://basheerahamed.files.wordpress.com/2009/12/251.jpg?w=600" alt=""   /></a>were comapred against) it the function allows it.</p>
<p><strong>Syntax is as follows : array_diff_uassoc(array1,array2,array3….,function). </strong></p>
<p>with a sample below of how it is used.</p>
<p>function userdefined($v1,$v2)<br />
{<br />
if ($v1 === $v2)<br />
{<br />
return 0;<br />
}<br />
if ($v1 &gt; $v2)<br />
{<br />
return 1;<br />
}<br />
else<br />
{<br />
return -1;<br />
}<br />
}<br />
$a1=array(0=&gt;”Dog”,1=&gt;”Cat”,2=&gt;”Horse”)<br />
$a2=array(3=&gt;”Dog”,1=&gt;”Cat”,5=&gt;”Horse”)<br />
print_r(array_diff_uassoc($a1,$a2,”userdefined”));<br />
?&gt;</p>
<p>which results in the following output : Array( [0] =&gt; Dog [2] =&gt; Horse). For an example of the same function with two or more assigned arrays to the function:</p>
<p>function userdefined($v1,$v2)<br />
{<br />
if ($v1 === $v2)<br />
{<br />
return 0;<br />
}<br />
if ($v1 &gt; $v2)<br />
{<br />
return 1;<br />
}<br />
else<br />
{<br />
return -1;<br />
}<br />
}<br />
$a1=array(0=&gt;”Dog”,1=&gt;”Cat”,2=&gt;”Horse”)<br />
$a2=array(3=&gt;”Dog”,1=&gt;”Cat”,5=&gt;”Horse”)<br />
$a3=array(6=&gt;”Onyx”,0=&gt;”Dog”,5=&gt;”Horse”)<br />
print_r(array_diff_uassoc($a1,$a2,$a3,”userdefined”));<br />
?&gt;</p>
<p>Which in turn, gives you : Array ([2] =&gt; Horse )</p>
<p>So we see the different array_diff function variants and the diffeerent ways they are used to compare the values of one or more arrays with one another.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/basheerahamed.wordpress.com/35/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/basheerahamed.wordpress.com/35/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/basheerahamed.wordpress.com/35/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/basheerahamed.wordpress.com/35/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/basheerahamed.wordpress.com/35/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/basheerahamed.wordpress.com/35/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/basheerahamed.wordpress.com/35/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/basheerahamed.wordpress.com/35/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/basheerahamed.wordpress.com/35/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/basheerahamed.wordpress.com/35/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/basheerahamed.wordpress.com/35/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/basheerahamed.wordpress.com/35/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/basheerahamed.wordpress.com/35/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/basheerahamed.wordpress.com/35/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=basheerahamed.wordpress.com&amp;blog=10021300&amp;post=35&amp;subd=basheerahamed&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://basheerahamed.wordpress.com/2009/12/01/php-tips-4-array_diff_uassoc-function-in-php/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/38ad830390794ddb728bffc27943065d?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">basheerahamed</media:title>
		</media:content>

		<media:content url="http://basheerahamed.files.wordpress.com/2009/12/251.jpg" medium="image">
			<media:title type="html">25</media:title>
		</media:content>
	</item>
		<item>
		<title>PHP Fresher/Trainee in Chennai</title>
		<link>http://basheerahamed.wordpress.com/2009/12/01/php-freshertrainee-in-chennai/</link>
		<comments>http://basheerahamed.wordpress.com/2009/12/01/php-freshertrainee-in-chennai/#comments</comments>
		<pubDate>Tue, 01 Dec 2009 18:10:58 +0000</pubDate>
		<dc:creator>Basheer Ahamed</dc:creator>
				<category><![CDATA[php jobs]]></category>
		<category><![CDATA[frehers jobs]]></category>
		<category><![CDATA[fresher recruitment]]></category>
		<category><![CDATA[php jobs in chennai]]></category>
		<category><![CDATA[php jobs in india]]></category>
		<category><![CDATA[programming jobs]]></category>
		<category><![CDATA[trainee jobs]]></category>

		<guid isPermaLink="false">http://basheerahamed.wordpress.com/?p=31</guid>
		<description><![CDATA[COMPANY: SPACE COMPUTER AND SYSTEMS LTD JOB DESCRIPTION: Candidates  have to undergo hands on training in web2.0 technologies which includes Javascript and Ajax, PHP, C# and ASP.Net, Java/J2EE, MySQL, XML, Web 2.0 framework, Mashups, Dojo widgets, Echo2, Ajax security framework and toolkit including Web 2.0 enterprise. Post training upon their evaluation candidates will be taken [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=basheerahamed.wordpress.com&amp;blog=10021300&amp;post=31&amp;subd=basheerahamed&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<h3>COMPANY: <strong>SPACE COMPUTER AND SYSTEMS LTD</strong></h3>
<p><strong>JOB DESCRIPTION:</strong></p>
<div>Candidates  have to undergo hands on training in web2.0 technologies which includes Javascript and Ajax, PHP, C# and ASP.Net, Java/J2EE, MySQL, XML, Web 2.0 framework, Mashups, Dojo widgets, Echo2, Ajax security framework and toolkit including Web 2.0 enterprise. Post training upon their evaluation candidates will be taken in for Live projects in Web based Applications.</div>
<div><strong>POSITION REQUIREMENTS:</strong></div>
<div>Any Eng gradutes with Computer science /IT background and candidates who are willing to shift their career to web technologies shallapply.</div>
<div><strong> </strong></div>
<div><strong>CONTACT:</strong> HR, training<img title="@" src="http://www.devseeker.in/img/at.gif" alt="@" />spacecs.com</div>
<div><strong>Job ID:</strong> 3926</div>
<div><strong>Location:</strong> <a href="http://www.devseeker.in/Tech-Jobs/India/Chennai.html" target="_blank">Chennai</a></div>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/basheerahamed.wordpress.com/31/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/basheerahamed.wordpress.com/31/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/basheerahamed.wordpress.com/31/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/basheerahamed.wordpress.com/31/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/basheerahamed.wordpress.com/31/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/basheerahamed.wordpress.com/31/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/basheerahamed.wordpress.com/31/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/basheerahamed.wordpress.com/31/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/basheerahamed.wordpress.com/31/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/basheerahamed.wordpress.com/31/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/basheerahamed.wordpress.com/31/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/basheerahamed.wordpress.com/31/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/basheerahamed.wordpress.com/31/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/basheerahamed.wordpress.com/31/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=basheerahamed.wordpress.com&amp;blog=10021300&amp;post=31&amp;subd=basheerahamed&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://basheerahamed.wordpress.com/2009/12/01/php-freshertrainee-in-chennai/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/38ad830390794ddb728bffc27943065d?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">basheerahamed</media:title>
		</media:content>

		<media:content url="http://www.devseeker.in/img/at.gif" medium="image">
			<media:title type="html">@</media:title>
		</media:content>
	</item>
		<item>
		<title>PHP software Engineer</title>
		<link>http://basheerahamed.wordpress.com/2009/11/19/php-software-engineer/</link>
		<comments>http://basheerahamed.wordpress.com/2009/11/19/php-software-engineer/#comments</comments>
		<pubDate>Thu, 19 Nov 2009 18:01:09 +0000</pubDate>
		<dc:creator>Basheer Ahamed</dc:creator>
				<category><![CDATA[php jobs]]></category>
		<category><![CDATA[jobs at bangalore]]></category>
		<category><![CDATA[php job at bangalore]]></category>

		<guid isPermaLink="false">http://basheerahamed.wordpress.com/?p=28</guid>
		<description><![CDATA[Flipkart.com is a passionate and determined group of professionals that wish to create an excellent buying experience for you by leveraging the best of breed technology. We spend our days and weeks researching how we can make your search for books faster and easier. Nothing excites us more than satisfaction of our customers. Responsibilities Write [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=basheerahamed.wordpress.com&amp;blog=10021300&amp;post=28&amp;subd=basheerahamed&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Flipkart.com is a passionate and determined group of professionals that wish to create an excellent buying experience for you by leveraging the best of breed technology. We spend our days and weeks researching how we can make your search for books faster and easier. Nothing excites us more than satisfaction of our customers.</p>
<p><strong>Responsibilities</strong></p>
<ul type="DISC">
<li>Write maintainable, unit-tested code in Python, PHP and Java to solve business problems</li>
<li>Develop object-oriented models and design data structures for new software projects</li>
<li>Implement business logic and data models with suitable class design</li>
<li>Work with designers, business analysts, and product managers to estimate and plan projects in an Agile development framework</li>
<li>Work on a cross-functional team, collaborating with peers on all elements of the development process</li>
<li>Follow industry coding standards</li>
<li>Create appropriate technical documentation</li>
</ul>
<p><strong>Qualifications</strong></p>
<ul type="DISC">
<li>Minimum 1 year experience, ideally in a relevant area</li>
<li>Strong problem solving skills,</li>
<li>Good understanding of data structures &amp; algorithms and their space &amp; time complexities</li>
<li>Excellent coding skills – should be able to convert design into code fluently</li>
<li>B Tech in Computer Science or equivalent from a reputed college</li>
</ul>
<p><strong>Address:<br />
</strong>Flipkart.com, 1st Floor,<br />
No. 447/C, 1st A Cross,<br />
12th Main, 4th Block,<br />
Opp. BSNL Telephone Exchange,<br />
Koramangala,<br />
Bangalore – 560034<br />
Karnataka, India</p>
<p>Please send your updated resumes to <a href="mailto:careers@flipkart.com" target="_blank">careers@flipkart.com<br />
</a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/basheerahamed.wordpress.com/28/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/basheerahamed.wordpress.com/28/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/basheerahamed.wordpress.com/28/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/basheerahamed.wordpress.com/28/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/basheerahamed.wordpress.com/28/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/basheerahamed.wordpress.com/28/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/basheerahamed.wordpress.com/28/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/basheerahamed.wordpress.com/28/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/basheerahamed.wordpress.com/28/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/basheerahamed.wordpress.com/28/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/basheerahamed.wordpress.com/28/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/basheerahamed.wordpress.com/28/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/basheerahamed.wordpress.com/28/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/basheerahamed.wordpress.com/28/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=basheerahamed.wordpress.com&amp;blog=10021300&amp;post=28&amp;subd=basheerahamed&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://basheerahamed.wordpress.com/2009/11/19/php-software-engineer/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/38ad830390794ddb728bffc27943065d?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">basheerahamed</media:title>
		</media:content>
	</item>
		<item>
		<title>PHP tips #3- .htaccess Password Protection in php</title>
		<link>http://basheerahamed.wordpress.com/2009/11/19/php-tips-3-htaccess-password-protection-in-php/</link>
		<comments>http://basheerahamed.wordpress.com/2009/11/19/php-tips-3-htaccess-password-protection-in-php/#comments</comments>
		<pubDate>Thu, 19 Nov 2009 17:42:26 +0000</pubDate>
		<dc:creator>Basheer Ahamed</dc:creator>
				<category><![CDATA[php programming tips]]></category>
		<category><![CDATA[htacces security]]></category>
		<category><![CDATA[htaccess in php]]></category>
		<category><![CDATA[htaccess password protection]]></category>
		<category><![CDATA[webpage security]]></category>

		<guid isPermaLink="false">http://basheerahamed.wordpress.com/?p=24</guid>
		<description><![CDATA[Even without using mySQl, users can still password protect their files through .htaccess password protection. The code can be divided into 3 if-else statements: 1. If the user has not been validated, use the PHP header and request for a username and password. 2. Else, if the user’s name is “webworld” and the password is [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=basheerahamed.wordpress.com&amp;blog=10021300&amp;post=24&amp;subd=basheerahamed&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p style="text-align:left;">Even without using mySQl, users can still password protect their files through .htaccess password protection.</p>
<p>The code can be divided into 3 if-else statements:</p>
<p>1. If the user has not been validated, use the PHP header and request for a username and password.</p>
<p>2. Else, if the user’s name is “webworld” and the password is “webworld”, log in. Here, all the code for the user will be placed.</p>
<p>3. Else say the user/password failed.</p>
<blockquote><p>////1st part<br />
if (!isset($PHP_AUTH_USER))<br />
{<br />
header(&#8220;WWW-Authenticate: Basic realm=\&#8221;webworld Password.\&#8221;");<br />
Header(&#8220;HTTP/1.0 401 Unauthorized&#8221;);<br />
exit;<br />
}</p>
<p>////2nd part<br />
else if(($PHP_AUTH_USER==&#8221;webworld&#8221;) &amp;&amp; ($PHP_AUTH_PW==&#8221;webworld&#8221;))<br />
{<br />
echo &#8220;You are logged in&#8230;&#8221;;<br />
////put the code for the whole user page in here<br />
////you can also create a redirect to the user page if you want<br />
}</p>
<p>////3rd part<br />
else<br />
{<br />
echo &#8220;Failed entry”;<br />
////fail try again<br />
}<br />
?&gt;</p></blockquote>
<p>Remember that the username and password will remain for the whole session as long as explorer windows is open.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/basheerahamed.wordpress.com/24/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/basheerahamed.wordpress.com/24/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/basheerahamed.wordpress.com/24/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/basheerahamed.wordpress.com/24/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/basheerahamed.wordpress.com/24/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/basheerahamed.wordpress.com/24/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/basheerahamed.wordpress.com/24/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/basheerahamed.wordpress.com/24/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/basheerahamed.wordpress.com/24/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/basheerahamed.wordpress.com/24/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/basheerahamed.wordpress.com/24/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/basheerahamed.wordpress.com/24/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/basheerahamed.wordpress.com/24/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/basheerahamed.wordpress.com/24/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=basheerahamed.wordpress.com&amp;blog=10021300&amp;post=24&amp;subd=basheerahamed&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://basheerahamed.wordpress.com/2009/11/19/php-tips-3-htaccess-password-protection-in-php/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/38ad830390794ddb728bffc27943065d?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">basheerahamed</media:title>
		</media:content>
	</item>
		<item>
		<title>PHP Jobs-Senior PHP/Drupal developer</title>
		<link>http://basheerahamed.wordpress.com/2009/11/18/php-jobs-senior-phpdrupal-developer/</link>
		<comments>http://basheerahamed.wordpress.com/2009/11/18/php-jobs-senior-phpdrupal-developer/#comments</comments>
		<pubDate>Wed, 18 Nov 2009 17:24:08 +0000</pubDate>
		<dc:creator>Basheer Ahamed</dc:creator>
				<category><![CDATA[jobs]]></category>
		<category><![CDATA[php jobs]]></category>
		<category><![CDATA[drupal developer]]></category>
		<category><![CDATA[experianced php programmer]]></category>
		<category><![CDATA[php jobs experiance]]></category>
		<category><![CDATA[senior php programmer]]></category>

		<guid isPermaLink="false">http://basheerahamed.wordpress.com/?p=21</guid>
		<description><![CDATA[Ideal developer will have the following: expertise in custom Drupal/PHP/MySQL development expertise with symantic markup and CSS styling, especially for highly     customized Drupal themes experience with module based development using Views, Forms,           Webform, Ubercart and Solr experience with the Services module and inter-application communication sensitivity to visual design and a body of work that reflects [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=basheerahamed.wordpress.com&amp;blog=10021300&amp;post=21&amp;subd=basheerahamed&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Ideal developer will have the following:</p>
<ul>
<li> expertise in custom Drupal/PHP/MySQL development</li>
<li> expertise with symantic markup and CSS styling, especially for highly     customized Drupal themes</li>
<li> experience with module based development using Views, Forms,           Webform, Ubercart and Solr</li>
<li> experience with the Services module and inter-application communication</li>
<li> sensitivity to visual design and a body of work that reflects this</li>
<li> experience creating interfaces for CMS administration</li>
<li> interest in working with interactive designers to build experiential Flash websites</li>
<li> an avowed love for delivering projects on-time and on-budge</li>
</ul>
<p>If you have interest, please send your portfolio, resume and cover letter to <a href="mailto:jobs@bluecadet.com">jobs@bluecadet.com</a>.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/basheerahamed.wordpress.com/21/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/basheerahamed.wordpress.com/21/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/basheerahamed.wordpress.com/21/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/basheerahamed.wordpress.com/21/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/basheerahamed.wordpress.com/21/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/basheerahamed.wordpress.com/21/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/basheerahamed.wordpress.com/21/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/basheerahamed.wordpress.com/21/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/basheerahamed.wordpress.com/21/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/basheerahamed.wordpress.com/21/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/basheerahamed.wordpress.com/21/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/basheerahamed.wordpress.com/21/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/basheerahamed.wordpress.com/21/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/basheerahamed.wordpress.com/21/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=basheerahamed.wordpress.com&amp;blog=10021300&amp;post=21&amp;subd=basheerahamed&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://basheerahamed.wordpress.com/2009/11/18/php-jobs-senior-phpdrupal-developer/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/38ad830390794ddb728bffc27943065d?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">basheerahamed</media:title>
		</media:content>
	</item>
		<item>
		<title>PHP Tips #2- Important Tips to Write PHP Code Defensively</title>
		<link>http://basheerahamed.wordpress.com/2009/11/18/php-tips-2-important-tips-to-write-php-code-defensively/</link>
		<comments>http://basheerahamed.wordpress.com/2009/11/18/php-tips-2-important-tips-to-write-php-code-defensively/#comments</comments>
		<pubDate>Wed, 18 Nov 2009 17:16:32 +0000</pubDate>
		<dc:creator>Basheer Ahamed</dc:creator>
				<category><![CDATA[php programming tips]]></category>
		<category><![CDATA[global registers in php]]></category>
		<category><![CDATA[php tips]]></category>
		<category><![CDATA[php tips for beginners]]></category>

		<guid isPermaLink="false">http://basheerahamed.wordpress.com/?p=18</guid>
		<description><![CDATA[The PHP feature  “Register Globals”  leads to a palpable lacuna in programming safety. Once this feature is activated in PHP configuration file, even a single variable that is to uninitialized, can lead to a great security flaw. For instance, &#60;?php if (is_admin()) ( $authorized=true; ) if ($authorized) ( include "/very/sensitive/data.php"; ) ?&#62; When you run the file,  [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=basheerahamed.wordpress.com&amp;blog=10021300&amp;post=18&amp;subd=basheerahamed&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<ul>
<li>The PHP feature  “Register Globals”  leads to a palpable lacuna in programming safety. Once this feature is activated in PHP configuration file, even a single variable that is to uninitialized, can lead to a great security flaw. For instance,</li>
</ul>
<blockquote>
<pre>&lt;?php
if (is_admin()) ( $authorized=true; )
if ($authorized) ( include "/very/sensitive/data.php"; )
?&gt;</pre>
</blockquote>
<ul>
<li>When you run the file,  because of non-initialization the user may not be verified, resulting in anyone accessing the administrative control! To counter this, you should disable Register Globals, initialize variables use localized variables and as far as possible within the programs.</li>
</ul>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/basheerahamed.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/basheerahamed.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/basheerahamed.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/basheerahamed.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/basheerahamed.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/basheerahamed.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/basheerahamed.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/basheerahamed.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/basheerahamed.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/basheerahamed.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/basheerahamed.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/basheerahamed.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/basheerahamed.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/basheerahamed.wordpress.com/18/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=basheerahamed.wordpress.com&amp;blog=10021300&amp;post=18&amp;subd=basheerahamed&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://basheerahamed.wordpress.com/2009/11/18/php-tips-2-important-tips-to-write-php-code-defensively/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/38ad830390794ddb728bffc27943065d?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">basheerahamed</media:title>
		</media:content>
	</item>
		<item>
		<title>PHP Tips #1-Looping Statement At PHP</title>
		<link>http://basheerahamed.wordpress.com/2009/11/07/php-tips-1-looping-statement-at-php/</link>
		<comments>http://basheerahamed.wordpress.com/2009/11/07/php-tips-1-looping-statement-at-php/#comments</comments>
		<pubDate>Sat, 07 Nov 2009 16:25:26 +0000</pubDate>
		<dc:creator>Basheer Ahamed</dc:creator>
				<category><![CDATA[php programming tips]]></category>
		<category><![CDATA[php guide]]></category>
		<category><![CDATA[php looping statement]]></category>
		<category><![CDATA[php tips]]></category>

		<guid isPermaLink="false">http://basheerahamed.wordpress.com/?p=14</guid>
		<description><![CDATA[Looping statements, like Do-While looping statements, While looping statements, and For looping statements, makes programming very easy, even at making PHPs. But did you know that there is something that looping statements can’t loop? That’s right! There is something. Looping statements can’t loop If-Else statements. That’s because when the looping statement starts, it goes through [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=basheerahamed.wordpress.com&amp;blog=10021300&amp;post=14&amp;subd=basheerahamed&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<ul>
<li> Looping statements, like Do-While looping statements, While looping statements, and For looping statements, makes programming very easy, even at making PHPs. But did you know that there is something that looping statements can’t loop? That’s right! There is something.</li>
<li> Looping statements can’t loop If-Else statements. That’s because when the looping statement starts, it goes through the If-Else statement, and then, whatever the statement the If-Else statement supplies, it will be the new statement the looping statement loops, and the If-Else statement will be left aside.</li>
<li> PHP is  very frustrating that your looping statements are not looping the whole statements you put inside it. Thus, your website will not work properly. The only solution that I find is that you have to use Switch statements. Switch statements are like If-Else statements, but the Switch statements are more specific.</li>
</ul>
<p><!--Session data--></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/basheerahamed.wordpress.com/14/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/basheerahamed.wordpress.com/14/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/basheerahamed.wordpress.com/14/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/basheerahamed.wordpress.com/14/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/basheerahamed.wordpress.com/14/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/basheerahamed.wordpress.com/14/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/basheerahamed.wordpress.com/14/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/basheerahamed.wordpress.com/14/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/basheerahamed.wordpress.com/14/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/basheerahamed.wordpress.com/14/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/basheerahamed.wordpress.com/14/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/basheerahamed.wordpress.com/14/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/basheerahamed.wordpress.com/14/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/basheerahamed.wordpress.com/14/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=basheerahamed.wordpress.com&amp;blog=10021300&amp;post=14&amp;subd=basheerahamed&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://basheerahamed.wordpress.com/2009/11/07/php-tips-1-looping-statement-at-php/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/38ad830390794ddb728bffc27943065d?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">basheerahamed</media:title>
		</media:content>
	</item>
	</channel>
</rss>
