<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Web Development Blog</title>
	<atom:link href="http://eisabainyo.net/weblog/feed/" rel="self" type="application/rss+xml" />
	<link>http://eisabainyo.net/weblog</link>
	<description>Web Development, Web Design, Web Applications, Web 2.0, AJAX, WordPress Themes, Search Engine Optimisation, Latest Technologies and more..</description>
	<lastBuildDate>Wed, 10 Mar 2010 12:45:00 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Display 5 latest posts in each category in WordPress</title>
		<link>http://eisabainyo.net/weblog/2010/03/10/display-5-latest-posts-in-each-category-in-wordpress/</link>
		<comments>http://eisabainyo.net/weblog/2010/03/10/display-5-latest-posts-in-each-category-in-wordpress/#comments</comments>
		<pubDate>Wed, 10 Mar 2010 12:34:24 +0000</pubDate>
		<dc:creator>eisabai</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[Snippets]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://eisabainyo.net/weblog/?p=1285</guid>
		<description><![CDATA[To display 5 latest posts in each parent category of your WordPress blog, add the following code into the template that you want the result to appear.   In our case, we added the following code into our 404 template page (404.php of current theme).  Other places that you might want to display [...]<p>Read <a href="http://eisabainyo.net/weblog/2010/03/10/display-5-latest-posts-in-each-category-in-wordpress/">Display 5 latest posts in each category in WordPress</a> on Web Development Blog!</p><div><h3>Other similiar posts that you might be interested in:</h3><ul><li><a href="http://eisabainyo.net/weblog/2007/05/14/customising-categoryphp-in-wordpress/" rel="bookmark" title="May 14, 2007">Customising category.php in WordPress</a></li>

<li><a href="http://eisabainyo.net/weblog/2009/02/09/display-10-recent-post-titles-on-homepage/" rel="bookmark" title="February 9, 2009">Display 10 recent post titles on homepage</a></li>

<li><a href="http://eisabainyo.net/weblog/2010/02/22/how-to-create-a-archive-page-in-wordpress/" rel="bookmark" title="February 22, 2010">5 steps to creating a custom Archive page in WordPress</a></li>

<li><a href="http://eisabainyo.net/weblog/2009/02/02/a-list-of-all-posts-in-an-alphabetical-order/" rel="bookmark" title="February 2, 2009">A list of all posts in an alphabetical order</a></li>

<li><a href="http://eisabainyo.net/weblog/2009/05/26/highlight-the-current-page-link-in-wordpress/" rel="bookmark" title="May 26, 2009">Highlight the current page link in WordPress</a></li>

<li><a href="http://eisabainyo.net/weblog/2009/11/24/how-to-add-a-breadcrumb-to-your-blog-and-have-it-appear-on-googles-search-result-snippet/" rel="bookmark" title="November 24, 2009">How to add a breadcrumb to your blog and have it appear on Google&#8217;s Search Result Snippet</a></li>

<li><a href="http://eisabainyo.net/weblog/2007/07/25/page-not-found-404-of-10-popular-websites/" rel="bookmark" title="July 25, 2007">Page Not Found (404) of 10 popular websites</a></li>
</ul><!-- Similar Posts took 35.679 ms --></div>]]></description>
			<content:encoded><![CDATA[<p>To display 5 latest posts in each parent category of your WordPress blog, add the following code into the template that you want the result to appear.   In our case, we added the following code into our <a href="http://eisabainyo.net/weblog/404">404</a> template page (404.php of current theme).  Other places that you might want to display a list of posts by category are: 1) Footer, 2) <a href="http://eisabainyo.net/weblog/archive/">WordPress Custom Archive Page</a>, 3) <a href="http://eisabainyo.net/weblog/search/">WordPress Custom Search Page</a>, 4) WordPress Landing Page and so on. </p>
<p><img src="http://eisabainyo.net/weblog/wp-content/uploads/2010/03/404-wide.gif" alt="" title="Screenshot of 404 page with a list of posts by category" width="400" height="276" class="alignnone size-full wp-image-1286" /><br />
<small>Screenshot of 404 page with a list of posts by category (Wide View)</small></p>
<p><img src="http://eisabainyo.net/weblog/wp-content/uploads/2010/03/404-narrow.gif" alt="" title="Screenshot of 404 page with a list of posts by category" width="330" class="alignnone size-full wp-image-1292" /><br />
<small>Screenshot of 404 page with a list of posts by category (Narrow View)</small></p>
<p><strong>WordPress PHP Code</strong></p>
<pre>&lt;div id=&quot;page-not-found&quot; class=&quot;post-page&quot;&gt;

&lt;?php
$cat_args = array(
  'orderby' =&gt; 'name',
  'order' =&gt; 'ASC',
  'child_of' =&gt; 0
);

$categories =   get_categories($cat_args); 

foreach($categories as $category) {
    echo '&lt;dl&gt;';
    echo '&lt;dt&gt; &lt;a href=&quot;' . get_category_link( $category-&gt;term_id ) . '&quot; title=&quot;' . sprintf( __( &quot;View all posts in %s&quot; ), $category-&gt;name ) . '&quot; ' . '&gt;' . $category-&gt;name.'&lt;/a&gt;&lt;/dt&gt;';

     $post_args = array(
      'numberposts' =&gt; 5,
      'category' =&gt; $category-&gt;term_id
    );

    $posts = get_posts($post_args);

	foreach($posts as $post) {
	?&gt;
		&lt;dd&gt;&lt;a href=&quot;&lt;?php the_permalink(); ?&gt;&quot;&gt;&lt;?php the_title(); ?&gt;&lt;/a&gt;&lt;/dd&gt;
	&lt;?php
	}
	echo '&lt;dd class=&quot;view-all&quot;&gt; &lt;a href=&quot;' . get_category_link( $category-&gt;term_id ) . '&quot; title=&quot;' . sprintf( __( &quot;View all posts in %s&quot; ), $category-&gt;name ) . '&quot; ' . '&gt;View all posts in ' . $category-&gt;name.'&lt;/a&gt;&lt;/dd&gt;';
	echo '&lt;/dl&gt;';
}
?&gt;
&lt;div class=&quot;page-end&quot;&gt;&lt;!-- --&gt;&lt;/div&gt;

&lt;/div&gt;
</pre>
<p><strong>CSS</strong></p>
<pre>
#page-not-found dl {
width: 200px;
float: left;
padding: 0 18px 0 0;
height: 250px;
}

#page-not-found dt {
font-weight: bold;
font-size: 1.1em;
padding: 10px 0;
}

#page-not-found dt a {
color: #b0bf32;
}

#page-not-found dd.view-all {
border-top: 1px solid #c9c9c9;
font-size: 0.9em;
margin: 5px 0;
padding: 2px 0 0;
text-align: right;
}

#page-not-found dd.view-all a {
color: #999;
}

.page-end {
clear: both;
}
</pre>
<p>Read <a href="http://eisabainyo.net/weblog/2010/03/10/display-5-latest-posts-in-each-category-in-wordpress/">Display 5 latest posts in each category in WordPress</a> on Web Development Blog!</p><div><h3>Other similiar posts that you might be interested in:</h3><ul><li><a href="http://eisabainyo.net/weblog/2007/05/14/customising-categoryphp-in-wordpress/" rel="bookmark" title="May 14, 2007">Customising category.php in WordPress</a></li>

<li><a href="http://eisabainyo.net/weblog/2009/02/09/display-10-recent-post-titles-on-homepage/" rel="bookmark" title="February 9, 2009">Display 10 recent post titles on homepage</a></li>

<li><a href="http://eisabainyo.net/weblog/2010/02/22/how-to-create-a-archive-page-in-wordpress/" rel="bookmark" title="February 22, 2010">5 steps to creating a custom Archive page in WordPress</a></li>

<li><a href="http://eisabainyo.net/weblog/2009/02/02/a-list-of-all-posts-in-an-alphabetical-order/" rel="bookmark" title="February 2, 2009">A list of all posts in an alphabetical order</a></li>

<li><a href="http://eisabainyo.net/weblog/2009/05/26/highlight-the-current-page-link-in-wordpress/" rel="bookmark" title="May 26, 2009">Highlight the current page link in WordPress</a></li>

<li><a href="http://eisabainyo.net/weblog/2009/11/24/how-to-add-a-breadcrumb-to-your-blog-and-have-it-appear-on-googles-search-result-snippet/" rel="bookmark" title="November 24, 2009">How to add a breadcrumb to your blog and have it appear on Google&#8217;s Search Result Snippet</a></li>

<li><a href="http://eisabainyo.net/weblog/2007/07/25/page-not-found-404-of-10-popular-websites/" rel="bookmark" title="July 25, 2007">Page Not Found (404) of 10 popular websites</a></li>
</ul><!-- Similar Posts took 7.665 ms --></div>]]></content:encoded>
			<wfw:commentRss>http://eisabainyo.net/weblog/2010/03/10/display-5-latest-posts-in-each-category-in-wordpress/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to style a Submit button in CSS &#8211; Example 2</title>
		<link>http://eisabainyo.net/weblog/2010/03/09/how-to-style-a-submit-button-in-css-example-2/</link>
		<comments>http://eisabainyo.net/weblog/2010/03/09/how-to-style-a-submit-button-in-css-example-2/#comments</comments>
		<pubDate>Tue, 09 Mar 2010 01:31:06 +0000</pubDate>
		<dc:creator>eisabai</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[Snippets]]></category>
		<category><![CDATA[xHTML]]></category>

		<guid isPermaLink="false">http://eisabainyo.net/weblog/?p=1238</guid>
		<description><![CDATA[
Since writing How to style a Submit button in CSS a few months ago, I have found an alternative way to achieve the same result.   In this example, we will be using &#60;button&#62; tag instead of &#60;input&#62; tag.    The &#60;button&#62; tag will still submit the form that it belongs to [...]<p>Read <a href="http://eisabainyo.net/weblog/2010/03/09/how-to-style-a-submit-button-in-css-example-2/">How to style a Submit button in CSS &#8211; Example 2</a> on Web Development Blog!</p><div><h3>Other similiar posts that you might be interested in:</h3><ul><li><a href="http://eisabainyo.net/weblog/2009/04/24/how-to-style-a-submit-button-in-css/" rel="bookmark" title="April 24, 2009">How to style a Submit button in CSS</a></li>

<li><a href="http://eisabainyo.net/weblog/2009/05/19/fieldset-and-legend-bug-in-ie8/" rel="bookmark" title="May 19, 2009">Fieldset and Legend bug in IE8</a></li>

<li><a href="http://eisabainyo.net/weblog/2009/06/30/change-the-arrow-into-a-hand-when-hovering-over-submit-button/" rel="bookmark" title="June 30, 2009">Change the arrow into a hand when hovering over &#8216;Submit&#8217; button</a></li>

<li><a href="http://eisabainyo.net/weblog/2009/07/02/some-simple-but-effective-css-rules-for-ie-6/" rel="bookmark" title="July 2, 2009">Some simple but effective CSS rules for IE 6</a></li>

<li><a href="http://eisabainyo.net/weblog/2009/08/28/framebar-like-diggbar-example-in-html-and-css-with-no-javascript/" rel="bookmark" title="August 28, 2009">Framebar (like diggbar) example in html and css with no javascript</a></li>

<li><a href="http://eisabainyo.net/weblog/2009/05/28/check-username-availability-using-ajax-and-jquery/" rel="bookmark" title="May 28, 2009">Check username availability using AJAX and jQuery</a></li>

<li><a href="http://eisabainyo.net/weblog/2009/07/23/customising-recaptcha-theme/" rel="bookmark" title="July 23, 2009">Customising reCAPTCHA Theme</a></li>
</ul><!-- Similar Posts took 15.602 ms --></div>]]></description>
			<content:encoded><![CDATA[<p><img src="http://eisabainyo.net/weblog/wp-content/uploads/2010/03/contact-us-today.gif" alt="" title="Contact us today!" width="247" height="86" class="alignnone size-full wp-image-1241" /></p>
<p>Since writing <a href="http://eisabainyo.net/weblog/2009/04/24/how-to-style-a-submit-button-in-css/">How to style a Submit button in CSS</a> a few months ago, I have found an alternative way to achieve the same result.   In this example, we will be using <code>&lt;button&gt;</code> tag instead of <code>&lt;input&gt;</code> tag.    The <code>&lt;button&gt;</code> tag will still submit the form that it belongs to when clicked because the type of the button is set as <code>submit</code>.  </p>
<p><strong>HTML</strong></p>
<pre>&lt;button id=&quot;button&quot; name=&quot;button&quot; type=&quot;submit&quot;&gt;
&lt;span&gt;Contact us today!&lt;/span&gt;&lt;/button&gt;</pre>
<p><strong>CSS</strong></p>
<pre>#button {
	background: transparent url(contact.gif) 0 0 no-repeat;
	border: none;
	cursor: pointer;
	width: 180px;
	height: 50px;
}

#button span {
	display: none;
}</pre>
<p>Read <a href="http://eisabainyo.net/weblog/2010/03/09/how-to-style-a-submit-button-in-css-example-2/">How to style a Submit button in CSS &#8211; Example 2</a> on Web Development Blog!</p><div><h3>Other similiar posts that you might be interested in:</h3><ul><li><a href="http://eisabainyo.net/weblog/2009/04/24/how-to-style-a-submit-button-in-css/" rel="bookmark" title="April 24, 2009">How to style a Submit button in CSS</a></li>

<li><a href="http://eisabainyo.net/weblog/2009/05/19/fieldset-and-legend-bug-in-ie8/" rel="bookmark" title="May 19, 2009">Fieldset and Legend bug in IE8</a></li>

<li><a href="http://eisabainyo.net/weblog/2009/06/30/change-the-arrow-into-a-hand-when-hovering-over-submit-button/" rel="bookmark" title="June 30, 2009">Change the arrow into a hand when hovering over &#8216;Submit&#8217; button</a></li>

<li><a href="http://eisabainyo.net/weblog/2009/07/02/some-simple-but-effective-css-rules-for-ie-6/" rel="bookmark" title="July 2, 2009">Some simple but effective CSS rules for IE 6</a></li>

<li><a href="http://eisabainyo.net/weblog/2009/08/28/framebar-like-diggbar-example-in-html-and-css-with-no-javascript/" rel="bookmark" title="August 28, 2009">Framebar (like diggbar) example in html and css with no javascript</a></li>

<li><a href="http://eisabainyo.net/weblog/2009/05/28/check-username-availability-using-ajax-and-jquery/" rel="bookmark" title="May 28, 2009">Check username availability using AJAX and jQuery</a></li>

<li><a href="http://eisabainyo.net/weblog/2009/07/23/customising-recaptcha-theme/" rel="bookmark" title="July 23, 2009">Customising reCAPTCHA Theme</a></li>
</ul><!-- Similar Posts took 8.713 ms --></div>]]></content:encoded>
			<wfw:commentRss>http://eisabainyo.net/weblog/2010/03/09/how-to-style-a-submit-button-in-css-example-2/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Naomi Campell for jQuery</title>
		<link>http://eisabainyo.net/weblog/2010/03/07/naomi-campell-for-jquery/</link>
		<comments>http://eisabainyo.net/weblog/2010/03/07/naomi-campell-for-jquery/#comments</comments>
		<pubDate>Sun, 07 Mar 2010 06:03:52 +0000</pubDate>
		<dc:creator>eisabai</dc:creator>
				<category><![CDATA[WWW]]></category>

		<guid isPermaLink="false">http://eisabainyo.net/weblog/?p=1220</guid>
		<description><![CDATA[

As seen on iPhone version of news.com.au today.  Just thought it was funny because most of us would never ever associate a supermodel with a web technology. 
<p>Read <a href="http://eisabainyo.net/weblog/2010/03/07/naomi-campell-for-jquery/">Naomi Campell for jQuery</a> on Web Development Blog!</p><div><h3>Other similiar posts that you might be interested in:</h3><ul><li><a href="http://eisabainyo.net/weblog/2007/12/06/and-so-they-are-considered-newsworthy/" rel="bookmark" title="December 6, 2007">And so they are considered newsworthy</a></li>

<li><a href="http://eisabainyo.net/weblog/2007/04/23/myspace-news/" rel="bookmark" title="April 23, 2007">MySpace News</a></li>

<li><a href="http://eisabainyo.net/weblog/2007/07/08/php-projects-join-forces-to-go-php-5/" rel="bookmark" title="July 8, 2007">PHP projects join forces to Go PHP 5</a></li>

<li><a href="http://eisabainyo.net/weblog/2007/04/14/google-to-acquire-doubleclick-for-31-billion/" rel="bookmark" title="April 14, 2007">Google to acquire DoubleClick for 3.1 billion</a></li>

<li><a href="http://eisabainyo.net/weblog/2009/10/21/seo-site-checker/" rel="bookmark" title="October 21, 2009">SEO site checker</a></li>

<li><a href="http://eisabainyo.net/weblog/2007/10/09/web-30-already/" rel="bookmark" title="October 9, 2007">Web 3.0 already?</a></li>

<li><a href="http://eisabainyo.net/weblog/2005/12/25/css-shorthand-guide/" rel="bookmark" title="December 25, 2005">CSS Shorthand Guide</a></li>
</ul><!-- Similar Posts took 15.597 ms --></div>]]></description>
			<content:encoded><![CDATA[<p><img src="http://eisabainyo.net/weblog/wp-content/uploads/2010/03/naomi-jquery.png" alt="" title="Naomi Campell for jQuery" width="320" height="480" class="alignnone size-full wp-image-1221" /></p>
<p><img src="http://eisabainyo.net/weblog/wp-content/uploads/2010/03/naomi-jquery-2.png" alt="" title="Naomi Campell for jQuery" width="320" height="480" /></p>
<p>As seen on iPhone version of news.com.au today.  Just thought it was funny because most of us would never ever associate a supermodel with a web technology. </p>
<p>Read <a href="http://eisabainyo.net/weblog/2010/03/07/naomi-campell-for-jquery/">Naomi Campell for jQuery</a> on Web Development Blog!</p><div><h3>Other similiar posts that you might be interested in:</h3><ul><li><a href="http://eisabainyo.net/weblog/2007/12/06/and-so-they-are-considered-newsworthy/" rel="bookmark" title="December 6, 2007">And so they are considered newsworthy</a></li>

<li><a href="http://eisabainyo.net/weblog/2007/04/23/myspace-news/" rel="bookmark" title="April 23, 2007">MySpace News</a></li>

<li><a href="http://eisabainyo.net/weblog/2007/07/08/php-projects-join-forces-to-go-php-5/" rel="bookmark" title="July 8, 2007">PHP projects join forces to Go PHP 5</a></li>

<li><a href="http://eisabainyo.net/weblog/2007/04/14/google-to-acquire-doubleclick-for-31-billion/" rel="bookmark" title="April 14, 2007">Google to acquire DoubleClick for 3.1 billion</a></li>

<li><a href="http://eisabainyo.net/weblog/2009/10/21/seo-site-checker/" rel="bookmark" title="October 21, 2009">SEO site checker</a></li>

<li><a href="http://eisabainyo.net/weblog/2007/10/09/web-30-already/" rel="bookmark" title="October 9, 2007">Web 3.0 already?</a></li>

<li><a href="http://eisabainyo.net/weblog/2005/12/25/css-shorthand-guide/" rel="bookmark" title="December 25, 2005">CSS Shorthand Guide</a></li>
</ul><!-- Similar Posts took 6.642 ms --></div>]]></content:encoded>
			<wfw:commentRss>http://eisabainyo.net/weblog/2010/03/07/naomi-campell-for-jquery/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>DreamHost Promo Code &#8211; Get $30 off from hosting</title>
		<link>http://eisabainyo.net/weblog/2010/03/06/dreamhost-promo-code-get-30-off-from-hosting/</link>
		<comments>http://eisabainyo.net/weblog/2010/03/06/dreamhost-promo-code-get-30-off-from-hosting/#comments</comments>
		<pubDate>Sat, 06 Mar 2010 12:29:31 +0000</pubDate>
		<dc:creator>eisabai</dc:creator>
				<category><![CDATA[WWW]]></category>

		<guid isPermaLink="false">http://eisabainyo.net/weblog/?p=1208</guid>
		<description><![CDATA[
Use promo code WEBDEV30 to get $30 off from your dreamhost hosting package. Works for monthly, one year and two year hosting plans. 
Normal one year cost = $119.40
After dsicount = $119.40 &#8211; $30.00 = $89.40
WEBDEV30
The promo code expires on 30 April 2010.  
<p>Read <a href="http://eisabainyo.net/weblog/2010/03/06/dreamhost-promo-code-get-30-off-from-hosting/">DreamHost Promo Code &#8211; Get $30 off from hosting</a> on Web Development Blog!</p><div><h3>Other similiar posts that you might be interested in:</h3><ul><li><a href="http://eisabainyo.net/weblog/2010/02/27/a-list-of-godaddy-promo-codes-for-domain-name-hosting-ssl-certifcate-or-any-order-2010/" rel="bookmark" title="February 27, 2010">A list of GoDaddy promo codes for domain names, hosting, ssl certificates or any order (2010)</a></li>

<li><a href="http://eisabainyo.net/weblog/2007/04/01/happy-april-fools-day/" rel="bookmark" title="April 1, 2007">Happy April Fool&#8217;s Day!</a></li>

<li><a href="http://eisabainyo.net/weblog/2008/10/31/us-newspaper-quits-print-for-web/" rel="bookmark" title="October 31, 2008">US newspaper quits print for web</a></li>

<li><a href="http://eisabainyo.net/weblog/2009/02/20/store-login-information-in-cookie-using-jquery/" rel="bookmark" title="February 20, 2009">Store login information in cookie using jQuery</a></li>

<li><a href="http://eisabainyo.net/weblog/2007/07/08/php-projects-join-forces-to-go-php-5/" rel="bookmark" title="July 8, 2007">PHP projects join forces to Go PHP 5</a></li>

<li><a href="http://eisabainyo.net/weblog/2006/04/24/wordpress-20-theme-competition/" rel="bookmark" title="April 24, 2006">Wordpress 2.0 Theme Competition</a></li>

<li><a href="http://eisabainyo.net/weblog/2007/04/08/the-internet-from-the-past-10-websites-10-years-ago/" rel="bookmark" title="April 8, 2007">The Internet from the past &#8211; 10 websites 10 years ago</a></li>
</ul><!-- Similar Posts took 14.066 ms --></div>]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.dreamhost.com/r.cgi?608580/signup|WEBDEV30"><img src="http://eisabainyo.net/weblog/wp-content/uploads/2010/03/logo_dreamhost.gif" alt="Dreamhost $30 off Promo Code" title="Dreamhost $30 off Promo Code"  /></a></p>
<p>Use promo code <strong>WEBDEV30</strong> to get $30 off from your dreamhost hosting package. Works for monthly, one year and two year hosting plans. </p>
<p>Normal one year cost = $119.40<br />
After dsicount = $119.40 &#8211; $30.00 = $89.40</p>
<p><a href="http://www.dreamhost.com/r.cgi?608580/signup|WEBDEV30">WEBDEV30</a></p>
<p>The promo code expires on 30 April 2010.  </p>
<p>Read <a href="http://eisabainyo.net/weblog/2010/03/06/dreamhost-promo-code-get-30-off-from-hosting/">DreamHost Promo Code &#8211; Get $30 off from hosting</a> on Web Development Blog!</p><div><h3>Other similiar posts that you might be interested in:</h3><ul><li><a href="http://eisabainyo.net/weblog/2010/02/27/a-list-of-godaddy-promo-codes-for-domain-name-hosting-ssl-certifcate-or-any-order-2010/" rel="bookmark" title="February 27, 2010">A list of GoDaddy promo codes for domain names, hosting, ssl certificates or any order (2010)</a></li>

<li><a href="http://eisabainyo.net/weblog/2007/04/01/happy-april-fools-day/" rel="bookmark" title="April 1, 2007">Happy April Fool&#8217;s Day!</a></li>

<li><a href="http://eisabainyo.net/weblog/2008/10/31/us-newspaper-quits-print-for-web/" rel="bookmark" title="October 31, 2008">US newspaper quits print for web</a></li>

<li><a href="http://eisabainyo.net/weblog/2009/02/20/store-login-information-in-cookie-using-jquery/" rel="bookmark" title="February 20, 2009">Store login information in cookie using jQuery</a></li>

<li><a href="http://eisabainyo.net/weblog/2007/07/08/php-projects-join-forces-to-go-php-5/" rel="bookmark" title="July 8, 2007">PHP projects join forces to Go PHP 5</a></li>

<li><a href="http://eisabainyo.net/weblog/2006/04/24/wordpress-20-theme-competition/" rel="bookmark" title="April 24, 2006">Wordpress 2.0 Theme Competition</a></li>

<li><a href="http://eisabainyo.net/weblog/2007/04/08/the-internet-from-the-past-10-websites-10-years-ago/" rel="bookmark" title="April 8, 2007">The Internet from the past &#8211; 10 websites 10 years ago</a></li>
</ul><!-- Similar Posts took 7.781 ms --></div>]]></content:encoded>
			<wfw:commentRss>http://eisabainyo.net/weblog/2010/03/06/dreamhost-promo-code-get-30-off-from-hosting/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to disable text auto correction in iPhone web app</title>
		<link>http://eisabainyo.net/weblog/2010/03/05/how-to-disable-text-auto-correction-in-iphone-web-app/</link>
		<comments>http://eisabainyo.net/weblog/2010/03/05/how-to-disable-text-auto-correction-in-iphone-web-app/#comments</comments>
		<pubDate>Fri, 05 Mar 2010 12:14:39 +0000</pubDate>
		<dc:creator>eisabai</dc:creator>
				<category><![CDATA[Snippets]]></category>
		<category><![CDATA[Troubleshooting]]></category>

		<guid isPermaLink="false">http://eisabainyo.net/weblog/?p=1194</guid>
		<description><![CDATA[To turn off iPhone auto correction feature (predictive dictionary) on textboxes, add autocorrect="off" attribute to your input tag.  

&#60;input type=&#34;text&#34; id=&#34;keyword&#34; name=&#34;keyword&#34;
autocorrect=&#34;off&#34; /&#62;

You can also turn off auto capitalising/capitalizing feature by adding autocapitalize="off" attribute.

&#60;input type=&#34;text&#34; id=&#34;keyword&#34; name=&#34;keyword&#34;
autocorrect=&#34;off&#34; autocapitalize=&#34;off&#34; /&#62;

And lastly, you can turn off auto complete in a similar way.

&#60;input type=&#34;text&#34; id=&#34;keyword&#34; name=&#34;keyword&#34;
autocorrect=&#34;off&#34; autocapitalize=&#34;off&#34; [...]<p>Read <a href="http://eisabainyo.net/weblog/2010/03/05/how-to-disable-text-auto-correction-in-iphone-web-app/">How to disable text auto correction in iPhone web app</a> on Web Development Blog!</p><div><h3>Other similiar posts that you might be interested in:</h3><ul><li><a href="http://eisabainyo.net/weblog/2009/10/27/tips-for-iphone-web-app-development/" rel="bookmark" title="October 27, 2009">Tips for iPhone Web App Development</a></li>

<li><a href="http://eisabainyo.net/weblog/2009/06/12/making-a-website-iphone-friendly-using-css/" rel="bookmark" title="June 12, 2009">Making a website iPhone-friendly using CSS</a></li>

<li><a href="http://eisabainyo.net/weblog/2009/07/23/customising-recaptcha-theme/" rel="bookmark" title="July 23, 2009">Customising reCAPTCHA Theme</a></li>

<li><a href="http://eisabainyo.net/weblog/2007/09/27/10-tips-i-have-learned-from-wds2007-day-1/" rel="bookmark" title="September 27, 2007">10 tips I have learned from WDS2007 &#8211; Day 1</a></li>

<li><a href="http://eisabainyo.net/weblog/2009/08/28/framebar-like-diggbar-example-in-html-and-css-with-no-javascript/" rel="bookmark" title="August 28, 2009">Framebar (like diggbar) example in html and css with no javascript</a></li>

<li><a href="http://eisabainyo.net/weblog/2009/11/15/building-mashups-for-the-society-mashup-australia-part-i/" rel="bookmark" title="November 15, 2009">Building mashups for the society (Mashup Australia) &#8211; Part I</a></li>

<li><a href="http://eisabainyo.net/weblog/2009/02/20/store-login-information-in-cookie-using-jquery/" rel="bookmark" title="February 20, 2009">Store login information in cookie using jQuery</a></li>
</ul><!-- Similar Posts took 21.778 ms --></div>]]></description>
			<content:encoded><![CDATA[<p>To turn off iPhone auto correction feature (predictive dictionary) on textboxes, add <code>autocorrect="off"</code> attribute to your <code>input </code>tag.  </p>
<pre>
&lt;input type=&quot;text&quot; id=&quot;keyword&quot; name=&quot;keyword&quot;
autocorrect=&quot;off&quot; /&gt;
</pre>
<p>You can also turn off auto capitalising/capitalizing feature by adding <code>autocapitalize="off"</code> attribute.</p>
<pre>
&lt;input type=&quot;text&quot; id=&quot;keyword&quot; name=&quot;keyword&quot;
autocorrect=&quot;off&quot; autocapitalize=&quot;off&quot; /&gt;
</pre>
<p>And lastly, you can turn off auto complete in a similar way.</p>
<pre>
&lt;input type=&quot;text&quot; id=&quot;keyword&quot; name=&quot;keyword&quot;
autocorrect=&quot;off&quot; autocapitalize=&quot;off&quot; autocomplete=&quot;off&quot; /&gt;
</pre>
<p>More HTML tips for iPhone web apps can be found in <a href="http://www.amazon.com/gp/product/0596805780?ie=UTF8&#038;tag=eisabainyonet-20&#038;linkCode=as2&#038;camp=1789&#038;creative=390957&#038;creativeASIN=0596805780" target="_blank">Building iPhone Apps with HTML, CSS, and JavaScript</a><img src="http://www.assoc-amazon.com/e/ir?t=eisabainyonet-20&#038;l=as2&#038;o=1&#038;a=0596805780" width="1" height="1" border="0" alt="" style="border:none !important; margin:0px !important;" /> book published by O&#8217;Reilly Media, Inc.</p>
<p>Read <a href="http://eisabainyo.net/weblog/2010/03/05/how-to-disable-text-auto-correction-in-iphone-web-app/">How to disable text auto correction in iPhone web app</a> on Web Development Blog!</p><div><h3>Other similiar posts that you might be interested in:</h3><ul><li><a href="http://eisabainyo.net/weblog/2009/10/27/tips-for-iphone-web-app-development/" rel="bookmark" title="October 27, 2009">Tips for iPhone Web App Development</a></li>

<li><a href="http://eisabainyo.net/weblog/2009/06/12/making-a-website-iphone-friendly-using-css/" rel="bookmark" title="June 12, 2009">Making a website iPhone-friendly using CSS</a></li>

<li><a href="http://eisabainyo.net/weblog/2009/07/23/customising-recaptcha-theme/" rel="bookmark" title="July 23, 2009">Customising reCAPTCHA Theme</a></li>

<li><a href="http://eisabainyo.net/weblog/2007/09/27/10-tips-i-have-learned-from-wds2007-day-1/" rel="bookmark" title="September 27, 2007">10 tips I have learned from WDS2007 &#8211; Day 1</a></li>

<li><a href="http://eisabainyo.net/weblog/2009/08/28/framebar-like-diggbar-example-in-html-and-css-with-no-javascript/" rel="bookmark" title="August 28, 2009">Framebar (like diggbar) example in html and css with no javascript</a></li>

<li><a href="http://eisabainyo.net/weblog/2009/11/15/building-mashups-for-the-society-mashup-australia-part-i/" rel="bookmark" title="November 15, 2009">Building mashups for the society (Mashup Australia) &#8211; Part I</a></li>

<li><a href="http://eisabainyo.net/weblog/2009/02/20/store-login-information-in-cookie-using-jquery/" rel="bookmark" title="February 20, 2009">Store login information in cookie using jQuery</a></li>
</ul><!-- Similar Posts took 15.639 ms --></div>]]></content:encoded>
			<wfw:commentRss>http://eisabainyo.net/weblog/2010/03/05/how-to-disable-text-auto-correction-in-iphone-web-app/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Weekly round-up: 15 must read development, design and blogging articles</title>
		<link>http://eisabainyo.net/weblog/2010/03/01/weekly-round-up-15-must-read-development-design-and-blogging-articles-3/</link>
		<comments>http://eisabainyo.net/weblog/2010/03/01/weekly-round-up-15-must-read-development-design-and-blogging-articles-3/#comments</comments>
		<pubDate>Sun, 28 Feb 2010 23:25:15 +0000</pubDate>
		<dc:creator>eisabai</dc:creator>
				<category><![CDATA[WWW]]></category>
		<category><![CDATA[Web Development Blog]]></category>

		<guid isPermaLink="false">http://eisabainyo.net/weblog/?p=1048</guid>
		<description><![CDATA[Development
10+ Essential Tools for Windows Based Web Developers
Web development is not an easy career path to follow- there’s so much competition around for jobs and the industry is advancing all the time. If you want to stay ahead of the pack, it’s important to familiarise yourself with the latest and greatest tools- tools which will [...]<p>Read <a href="http://eisabainyo.net/weblog/2010/03/01/weekly-round-up-15-must-read-development-design-and-blogging-articles-3/">Weekly round-up: 15 must read development, design and blogging articles</a> on Web Development Blog!</p><div><h3>Other similiar posts that you might be interested in:</h3><ul><li><a href="http://eisabainyo.net/weblog/2010/02/07/weekly-round-up-15-must-read-development-design-and-blogging-articles/" rel="bookmark" title="February 7, 2010">Weekly Round-up: 15 must read development, design and blogging articles</a></li>

<li><a href="http://eisabainyo.net/weblog/2007/08/23/facebook-application-development/" rel="bookmark" title="August 23, 2007">Facebook application development</a></li>

<li><a href="http://eisabainyo.net/weblog/2007/08/14/becoming-a-web-php-developer/" rel="bookmark" title="August 14, 2007">Becoming a Web (PHP) Developer</a></li>

<li><a href="http://eisabainyo.net/weblog/2008/12/10/jquery-validation-plugin/" rel="bookmark" title="December 10, 2008">jQuery validation plugin</a></li>

<li><a href="http://eisabainyo.net/weblog/2008/12/10/jquery-gallery-plugin/" rel="bookmark" title="December 10, 2008">jQuery gallery plugin</a></li>

<li><a href="http://eisabainyo.net/weblog/2010/02/20/weekly-round-up-15-must-read-development-design-and-blogging-articles-2/" rel="bookmark" title="February 20, 2010">Weekly round-up: 15 must read development, design and blogging articles</a></li>

<li><a href="http://eisabainyo.net/weblog/2008/01/13/apps-on-friendster/" rel="bookmark" title="January 13, 2008">Apps on Friendster</a></li>
</ul><!-- Similar Posts took 18.293 ms --></div>]]></description>
			<content:encoded><![CDATA[<p><strong>Development</strong></p>
<p><a href="http://itshala.com/2010/02/22/10-essential-tools-for-windows-based-web-developers/">10+ Essential Tools for Windows Based Web Developers</a><br />
Web development is not an easy career path to follow- there’s so much competition around for jobs and the industry is advancing all the time. If you want to stay ahead of the pack, it’s important to familiarise yourself with the latest and greatest tools- tools which will save you time and improve the appearance and usability of the sites you build.</p>
<p><a href="http://www.soa-at-work.com/2010/02/it-job-trends-which-technologies-you.html">IT job trends &#8211; Which technologies you should learn next </a><br />
According to indeed.com you are currently the most valuable IT ressource if you are a Java Developer with Spring and Hibernate knowledge. You should know how to develop web applications with JSP, Struts or Web Flow and how to deploy it on Tomcat or Oracle Application Servers.</p>
<p><a href="http://aext.net/2010/02/learn-jquery-first-jquery-plugin-bubbleup/">Learning jQuery: Your First jQuery Plugin, “BubbleUP”</a><br />
There are many posts available detailing how to write your own jQuery plugin. It won’t take long before you realize that building in jQuery is very simple. Continuing in our jQuery Learning Series, here we’re going to build your first jQuery plugin. It’ll generate a bubble effect for your menu list and we’re going to call it BubbleUP.</p>
<p><a href="http://www.remotesynthesis.com/post.cfm/10-things-that-make-a-great-web-app-fred-wilson-at-fowa-miami-2010">10 Things That Make a Great Web App &#8211; Fred Wilson at FOWA Miami 2010</a><br />
Fred Wilson is described by Ryan Carson as one of the &#8220;smartest investors in the industry&#8221; with 15 years investing in web applications and services. He&#8217;s discussing 10 things that make a great web app.</p>
<p><a href="http://html5doctor.com/introducing-web-sql-databases/">Introducing Web SQL Databases</a><br />
The Web SQL database API isn’t actually part of the HTML5 specification, but it is part of the suite of specifications that allows us developers to build fully fledged web applications, so it’s about time we dig in and check it out.</p>
<p><strong>Design</strong></p>
<p><a href="http://vectips.com/tutorials/create-a-editable-stitched-label-type-treatment/">Create An Editable Stitched Label Type Treatment</a><br />
This Stitched Label Type tutorial relies heavily on the Appearance panel, making it easy to edit the text and apply the treatment to other fonts and vector elements.</p>
<p><a href="http://www.creativeopera.com/2010/2009-web-design-trends/">2009 Web Design Trends: What’s Washed-Up &#038; What Will Remain Hot in 2010</a><br />
There were some strong trends in web design in 2009. Here’s a look back at my top ten, and my predictions for these trends in 2010.</p>
<p><a href="http://d-lists.co.uk/2010/02/26/innovative-product-design/">Innovative Product Design</a><br />
When I’m looking for web design inspiration I like to make sure that I look at non web related sources of design to ensure that I don’t just follow current web trends. So today I thought I would showcase a whole host of really innovative product designs.</p>
<p><a href="http://www.1stwebdesigner.com/development/essential-tips-designers/">11 Essential Tips Every Designer Should Be Aware Of</a><br />
Almost every profession requires never ending learning and self educating, but especially it’s important in design field – new software, websites, tools come out every day, it’s your task to keep up, evolve your view and find the best ways to do specific tasks!</p>
<p><a href="http://www.onextrapixel.com/2010/02/25/80-extreme-advertisements-that-will-challenge-your-mind/">80 Extreme Advertisements That Will Challenge Your Mind</a><br />
Presenting another side to design, some of the advertisements shared in this article today may be a little visually disturbing or conceptually controversial.</p>
<p><strong>Blogging &#038; Business</strong></p>
<p><a href="http://richworks.in/2010/02/my-journey-to-become-a-kickass-blogger/">The 1st month of Richworks : My journey to become a kickass blogger</a><br />
The first month of blogging is always the toughest because this is when you have to come up with quality posts and tutorials to keep the visitors glued to your blog.</p>
<p><a href="http://www.admixweb.com/2010/02/22/do-you-have-what-it-takes-to-be-a-freelance-web-designer-or-developer/">Do You Have What it Takes to be a Freelance Web Designer or Developer?</a><br />
Do you have what it takes to be a freelance web designer or developer? Check out these 15 things to consider, and you decide! </p>
<p><a href="http://www.sitepoint.com/blogs/2010/02/25/why-you-need-facebook-fan-page/">12 Reasons You Need a Facebook Fan Page and 5 Easy Steps for Creating One</a><br />
Separate from your personal profile, a Facebook fan page is a public profile that lets you share your products, services and related information with other Facebook users. Here are some of the biggest reasons you should create a fan page today.</p>
<p><a href="http://eisabainyo.net/weblog/2010/02/25/so-you-dont-like-ads-on-websitesblogs/">So you don’t like ads on websites/blogs</a><br />
If you have a website that has ads, you are probably no stranger to people commenting that you have too many ads on your website. Usually, I just smile and nod when I receive such comment but today, I thought I’d write my thoughts here.</p>
<p><a href="http://www.toprankblog.com/2010/02/5tips-promote-blog/">5 Sure Fire Tactics to Promote a Business Blog</a><br />
<em>Relevant, Consistently Updated Content + Flawless Technical Functionality &#038; User Experience = Perfect Blog Launch</em><br />
What’s missing from the equation above? You guessed it: blog promotion.</p>
<p>Read <a href="http://eisabainyo.net/weblog/2010/03/01/weekly-round-up-15-must-read-development-design-and-blogging-articles-3/">Weekly round-up: 15 must read development, design and blogging articles</a> on Web Development Blog!</p><div><h3>Other similiar posts that you might be interested in:</h3><ul><li><a href="http://eisabainyo.net/weblog/2010/02/07/weekly-round-up-15-must-read-development-design-and-blogging-articles/" rel="bookmark" title="February 7, 2010">Weekly Round-up: 15 must read development, design and blogging articles</a></li>

<li><a href="http://eisabainyo.net/weblog/2007/08/23/facebook-application-development/" rel="bookmark" title="August 23, 2007">Facebook application development</a></li>

<li><a href="http://eisabainyo.net/weblog/2007/08/14/becoming-a-web-php-developer/" rel="bookmark" title="August 14, 2007">Becoming a Web (PHP) Developer</a></li>

<li><a href="http://eisabainyo.net/weblog/2008/12/10/jquery-validation-plugin/" rel="bookmark" title="December 10, 2008">jQuery validation plugin</a></li>

<li><a href="http://eisabainyo.net/weblog/2008/12/10/jquery-gallery-plugin/" rel="bookmark" title="December 10, 2008">jQuery gallery plugin</a></li>

<li><a href="http://eisabainyo.net/weblog/2010/02/20/weekly-round-up-15-must-read-development-design-and-blogging-articles-2/" rel="bookmark" title="February 20, 2010">Weekly round-up: 15 must read development, design and blogging articles</a></li>

<li><a href="http://eisabainyo.net/weblog/2008/01/13/apps-on-friendster/" rel="bookmark" title="January 13, 2008">Apps on Friendster</a></li>
</ul><!-- Similar Posts took 8.832 ms --></div>]]></content:encoded>
			<wfw:commentRss>http://eisabainyo.net/weblog/2010/03/01/weekly-round-up-15-must-read-development-design-and-blogging-articles-3/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>A list of GoDaddy promo codes for domain names, hosting, ssl certificates or any order (2010)</title>
		<link>http://eisabainyo.net/weblog/2010/02/27/a-list-of-godaddy-promo-codes-for-domain-name-hosting-ssl-certifcate-or-any-order-2010/</link>
		<comments>http://eisabainyo.net/weblog/2010/02/27/a-list-of-godaddy-promo-codes-for-domain-name-hosting-ssl-certifcate-or-any-order-2010/#comments</comments>
		<pubDate>Sat, 27 Feb 2010 10:18:48 +0000</pubDate>
		<dc:creator>eisabai</dc:creator>
				<category><![CDATA[WWW]]></category>

		<guid isPermaLink="false">http://eisabainyo.net/weblog/?p=1116</guid>
		<description><![CDATA[
Domain Name
BUY2010 &#8211; $0.99 for any .COM, .US, .MOBI, .BIZ, .NET, .ORG, .CA, .CO.UK and .IN domain names (only works for the first year of new or transfer registration)
OYH7 &#8211; $7.49 for any .COM domain names ($3.20 off)
chill7 &#8211; $7.49 for any .COM domain names ($3.20 off)
hash7 &#8211; $7.49 for any .COM domain names ($3.20 [...]<p>Read <a href="http://eisabainyo.net/weblog/2010/02/27/a-list-of-godaddy-promo-codes-for-domain-name-hosting-ssl-certifcate-or-any-order-2010/">A list of GoDaddy promo codes for domain names, hosting, ssl certificates or any order (2010)</a> on Web Development Blog!</p><div><h3>Other similiar posts that you might be interested in:</h3><ul><li><a href="http://eisabainyo.net/weblog/2008/03/30/asia-domain-names/" rel="bookmark" title="March 30, 2008">.asia domain names</a></li>

<li><a href="http://eisabainyo.net/weblog/2010/03/06/dreamhost-promo-code-get-30-off-from-hosting/" rel="bookmark" title="March 6, 2010">DreamHost Promo Code &#8211; Get $30 off from hosting</a></li>

<li><a href="http://eisabainyo.net/weblog/2007/02/17/everythingendsincom-catchy-com-domain-names/" rel="bookmark" title="February 17, 2007">everythingendsin.com &#8211; catchy .com domain names</a></li>

<li><a href="http://eisabainyo.net/weblog/2008/06/27/personalised-top-level-domain-names/" rel="bookmark" title="June 27, 2008">Personalised Top-Level Domain Names</a></li>

<li><a href="http://eisabainyo.net/weblog/2010/02/06/7-days-traffic-building-exercise-%e2%80%93-day-3/" rel="bookmark" title="February 6, 2010">7 Days Traffic Building Exercise – Day 3</a></li>

<li><a href="http://eisabainyo.net/weblog/2008/03/16/how-old-is-your-domain/" rel="bookmark" title="March 16, 2008">How old is your domain?</a></li>

<li><a href="http://eisabainyo.net/weblog/2008/03/06/asia-dot-asia-top-level-domain-names/" rel="bookmark" title="March 6, 2008">.asia (dot asia) top level domain names</a></li>
</ul><!-- Similar Posts took 14.462 ms --></div>]]></description>
			<content:encoded><![CDATA[<p><a href="http://eisabainyo.net/view/godaddy" target="_blank"><img src="http://www.ftjcfx.com/image-3838536-10382529" width="120" height="60" alt="Go Daddy $7.49.com Sale" border="0"/></a></p>
<p><strong>Domain Name</strong><br />
<a href="http://eisabainyo.net/view/godaddy" target="_blank">BUY2010</a> &#8211; $0.99 for any .COM, .US, .MOBI, .BIZ, .NET, .ORG, .CA, .CO.UK and .IN domain names (only works for the first year of new or transfer registration)<br />
<a href="http://eisabainyo.net/view/godaddy" target="_blank">OYH7</a> &#8211; $7.49 for any .COM domain names ($3.20 off)<br />
<a href="http://eisabainyo.net/view/godaddy" target="_blank">chill7</a> &#8211; $7.49 for any .COM domain names ($3.20 off)<br />
<a href="http://eisabainyo.net/view/godaddy" target="_blank">hash7</a> &#8211; $7.49 for any .COM domain names ($3.20 off)<br />
<a href="http://eisabainyo.net/view/godaddy" target="_blank">CWM7</a> &#8211; $7.49 for .net .biz .org domain names</p>
<p><strong>Hosting</strong><br />
<a href="http://eisabainyo.net/view/godaddy" target="_blank">ZINE20H1</a> – 20% off hosting packages<br />
<a href="http://eisabainyo.net/view/godaddy" target="_blank">chill20H1</a> – 20% off hosting packages<br />
<a href="http://eisabainyo.net/view/godaddy" target="_blank">NAU20</a> – 20% off hosting packages<br />
<a href="http://eisabainyo.net/view/godaddy" target="_blank">PETS20</a> &#8211; 20% off 12 months hosting (works out to only $45/year)<br />
<a href="http://eisabainyo.net/view/godaddy" target="_blank">GAM20</a> &#8211; 20% off 12 months hosting (works out to only $45/year)</p>
<p><strong>SSL Certificate</strong><br />
<a href="http://eisabainyo.net/view/godaddy" target="_blank">chill20SSL</a> – $12.99 for a standard SSL certificate (Normal Price: $30, 56% off)<br />
<a href="http://eisabainyo.net/view/godaddy" target="_blank">FPTSSL</a>  – $12.99 for a standard SSL certificate (Normal Price: $30, 56% off)</p>
<p><strong>Anything</strong><br />
<a href="http://eisabainyo.net/view/godaddy" target="_blank">chill5</a> &#8211; 10% off anything<br />
<a href="http://eisabainyo.net/view/godaddy" target="_blank">cjcsave10</a> &#8211; 10% off anything<br />
<a href="http://eisabainyo.net/view/godaddy" target="_blank">VCU1</a> &#8211; 10% off anything<br />
<a href="http://eisabainyo.net/view/godaddy" target="_blank">hash5</a> &#8211; 10% off anything<br />
<a href="http://eisabainyo.net/view/godaddy" target="_blank">NAU1</a> – 10% off anything<br />
<a href="http://eisabainyo.net/view/godaddy" target="_blank">ZINE8</a> &#8211; 10% off anything<br />
<a href="http://eisabainyo.net/view/godaddy" target="_blank">FPT15</a> – 15% off anything<br />
<a href="http://eisabainyo.net/view/godaddy" target="_blank">chill6</a> – $5 off any order of $30 and above<br />
<a href="http://eisabainyo.net/view/godaddy" target="_blank">ZINE9</a> &#8211; $5 off any order of $30 and above<br />
<a href="http://eisabainyo.net/view/godaddy" target="_blank">HITCH2</a> &#8211; $5 off any order of $30 and above<br />
<a href="http://eisabainyo.net/view/godaddy" target="_blank">BTPS101</a> &#8211; 20% off any order of $50 and above<br />
<a href="http://eisabainyo.net/view/godaddy" target="_blank">catalog1</a> &#8211; $20 off any order of $75 and above<br />
<a href="http://eisabainyo.net/view/godaddy" target="_blank">gdh0103plc</a> &#8211; $20 off any order of $75 and above</p>
<p></p>
<p><strong>Check Domain Name Availability – Instantly!</strong></p>
<form name="LookupForm" action="http://www.tkqlhce.com/interactive" method="get">
<table border="0" cellpadding="5" cellspacing="0" style="background: #79a303; border:1px solid #e5eac0">
<tr>
<td width="130" height="29" align="center"><a href="http://www.tkqlhce.com/click-3838536-10716289?url=http%3A%2F%2Fwww.godaddy.com%2Fdefault.aspx"><font style="font-size:10px; font-family:arial, sans serif; color: #fff;">www.GoDaddy.com</font></a></td>
<td width="85" style="font-size:11px; font-family:arial, sans serif; color: #fff;font-weight: bold;">Domain Name: </td>
<td>
<input type="text" name="domainToCheck" size="13" maxlength="67" tabindex="1" style="font-size:11px; padding: 0;">
<select name="tld" id="tld" tabindex="2" style="font-size:11px; padding: 0;"><option value=".COM" selected>.com</option><br />
						<option value=".US">.us</option><br />
						<option value=".NET">.net</option><br />
						<option value=".ORG">.org</option><br />
						<option value=".BIZ">.biz</option><br />
<option value=".INFO">.info</option><br />
						<option value=".MOBI">.mobi</option><br />
						<option value=".ME">.me</option><br />
						<option value=".WS">.ws</option></select>
<input type="hidden" name="checkAvail" value="1">
<input type="submit" name="submit" value="Check" tabindex="3" alt="Click Here to Search for Your Domain." style="padding: 0;" /></td>
</tr>
</table>
<input type="hidden" name="aid" value="10716289"/>
<input type="hidden" name="pid" value="3838536"/>
<input type="hidden" name="url" value="http://www.godaddy.com/gdshop/registrar/search.asp?isc=0000000000"/>
</form>
<p><img src="http://www.ftjcfx.com/image-3838536-10716289" width="1" height="1" border="0"/></p>
<div style="text-align:center"><a href="http://eisabainyo.net/view/godaddy" target="_blank"><img src="http://www.awltovhc.com/image-3838536-10497118" width="120" height="60" alt="GoDaddy.com" border="0"/></a></div>
<p>Screenshot of GoDaddy <strong>Review Your Shopping Cart</strong> (Check-out) page where you enter your promo code (click on the image to enlarge)<br />
<a href="http://eisabainyo.net/weblog/wp-content/uploads/2010/02/apply-promo-code-godaddy.gif"><img src="http://eisabainyo.net/weblog/wp-content/uploads/2010/02/apply-promo-code-godaddy.gif" alt="" title="Apply promo code on GoDaddy Check Out page" width="771" height="665" class="alignnone size-full wp-image-1117" /></a></p>
<p><em>Last updated: Feb 2010</em></p>
<p>Read <a href="http://eisabainyo.net/weblog/2010/02/27/a-list-of-godaddy-promo-codes-for-domain-name-hosting-ssl-certifcate-or-any-order-2010/">A list of GoDaddy promo codes for domain names, hosting, ssl certificates or any order (2010)</a> on Web Development Blog!</p><div><h3>Other similiar posts that you might be interested in:</h3><ul><li><a href="http://eisabainyo.net/weblog/2008/03/30/asia-domain-names/" rel="bookmark" title="March 30, 2008">.asia domain names</a></li>

<li><a href="http://eisabainyo.net/weblog/2010/03/06/dreamhost-promo-code-get-30-off-from-hosting/" rel="bookmark" title="March 6, 2010">DreamHost Promo Code &#8211; Get $30 off from hosting</a></li>

<li><a href="http://eisabainyo.net/weblog/2007/02/17/everythingendsincom-catchy-com-domain-names/" rel="bookmark" title="February 17, 2007">everythingendsin.com &#8211; catchy .com domain names</a></li>

<li><a href="http://eisabainyo.net/weblog/2008/06/27/personalised-top-level-domain-names/" rel="bookmark" title="June 27, 2008">Personalised Top-Level Domain Names</a></li>

<li><a href="http://eisabainyo.net/weblog/2010/02/06/7-days-traffic-building-exercise-%e2%80%93-day-3/" rel="bookmark" title="February 6, 2010">7 Days Traffic Building Exercise – Day 3</a></li>

<li><a href="http://eisabainyo.net/weblog/2008/03/16/how-old-is-your-domain/" rel="bookmark" title="March 16, 2008">How old is your domain?</a></li>

<li><a href="http://eisabainyo.net/weblog/2008/03/06/asia-dot-asia-top-level-domain-names/" rel="bookmark" title="March 6, 2008">.asia (dot asia) top level domain names</a></li>
</ul><!-- Similar Posts took 7.086 ms --></div>]]></content:encoded>
			<wfw:commentRss>http://eisabainyo.net/weblog/2010/02/27/a-list-of-godaddy-promo-codes-for-domain-name-hosting-ssl-certifcate-or-any-order-2010/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>How to show hidden files in FireFTP</title>
		<link>http://eisabainyo.net/weblog/2010/02/26/how-to-show-hidden-files-in-fireftp/</link>
		<comments>http://eisabainyo.net/weblog/2010/02/26/how-to-show-hidden-files-in-fireftp/#comments</comments>
		<pubDate>Thu, 25 Feb 2010 23:41:43 +0000</pubDate>
		<dc:creator>eisabai</dc:creator>
				<category><![CDATA[Tutorials]]></category>

		<guid isPermaLink="false">http://eisabainyo.net/weblog/?p=1067</guid>
		<description><![CDATA[FireFTP is a browser plugin for Mozilla Firefox that lets you connect to a FTP server.  By default, it doesn&#8217;t show any hidden files on the server, but you can change this via Options.  
1. Connect to a FTP server using FireFTP
2. Click on Tools -> Options from the top right menu
3. From [...]<p>Read <a href="http://eisabainyo.net/weblog/2010/02/26/how-to-show-hidden-files-in-fireftp/">How to show hidden files in FireFTP</a> on Web Development Blog!</p><div><h3>Other similiar posts that you might be interested in:</h3><ul><li><a href="http://eisabainyo.net/weblog/2008/06/03/tpg-proxy-problem/" rel="bookmark" title="June 3, 2008">TPG Internet proxy problem</a></li>

<li><a href="http://eisabainyo.net/weblog/2008/03/06/internet-explorer-8-beta-is-here/" rel="bookmark" title="March 6, 2008">Internet Explorer 8 (beta) is here</a></li>

<li><a href="http://eisabainyo.net/weblog/2007/02/19/web-20-star-burst-in-photoshop/" rel="bookmark" title="February 19, 2007">web 2.0 star burst in Photoshop</a></li>

<li><a href="http://eisabainyo.net/weblog/2009/03/23/useful-tools-and-tips-for-search-engine-optimisation-consultants/" rel="bookmark" title="March 23, 2009">Useful Tools and Tips for Search Engine Optimisation Consultants</a></li>

<li><a href="http://eisabainyo.net/weblog/2009/02/20/display-thickbox-on-page-load/" rel="bookmark" title="February 20, 2009">Display thickbox on page load</a></li>

<li><a href="http://eisabainyo.net/weblog/2009/02/27/firefox-browser-cache-setting/" rel="bookmark" title="February 27, 2009">Firefox browser cache setting</a></li>

<li><a href="http://eisabainyo.net/weblog/2008/07/20/my-experience-with-drupal/" rel="bookmark" title="July 20, 2008">My experience with Drupal</a></li>
</ul><!-- Similar Posts took 18.181 ms --></div>]]></description>
			<content:encoded><![CDATA[<p><a href="http://fireftp.mozdev.org/">FireFTP</a> is a browser plugin for Mozilla Firefox that lets you connect to a FTP server.  By default, it doesn&#8217;t show any hidden files on the server, but you can change this via Options.  </p>
<p>1. Connect to a FTP server using FireFTP<br />
2. Click on Tools -> Options from the top right menu<br />
3. From Options dialog box, tick &#8220;Show hidden files&#8221; and click &#8220;OK&#8221;</p>
<p><img src="http://eisabainyo.net/weblog/wp-content/uploads/2010/02/show-hidden-1.gif" alt="" title="Show Hidden Files" width="223" height="216" class="alignnone size-full wp-image-1068" /></p>
<p><img src="http://eisabainyo.net/weblog/wp-content/uploads/2010/02/show-hidden-2.gif" alt="" title="Show Hidden Files" /></p>
<p>Read <a href="http://eisabainyo.net/weblog/2010/02/26/how-to-show-hidden-files-in-fireftp/">How to show hidden files in FireFTP</a> on Web Development Blog!</p><div><h3>Other similiar posts that you might be interested in:</h3><ul><li><a href="http://eisabainyo.net/weblog/2008/06/03/tpg-proxy-problem/" rel="bookmark" title="June 3, 2008">TPG Internet proxy problem</a></li>

<li><a href="http://eisabainyo.net/weblog/2008/03/06/internet-explorer-8-beta-is-here/" rel="bookmark" title="March 6, 2008">Internet Explorer 8 (beta) is here</a></li>

<li><a href="http://eisabainyo.net/weblog/2007/02/19/web-20-star-burst-in-photoshop/" rel="bookmark" title="February 19, 2007">web 2.0 star burst in Photoshop</a></li>

<li><a href="http://eisabainyo.net/weblog/2009/03/23/useful-tools-and-tips-for-search-engine-optimisation-consultants/" rel="bookmark" title="March 23, 2009">Useful Tools and Tips for Search Engine Optimisation Consultants</a></li>

<li><a href="http://eisabainyo.net/weblog/2009/02/20/display-thickbox-on-page-load/" rel="bookmark" title="February 20, 2009">Display thickbox on page load</a></li>

<li><a href="http://eisabainyo.net/weblog/2009/02/27/firefox-browser-cache-setting/" rel="bookmark" title="February 27, 2009">Firefox browser cache setting</a></li>

<li><a href="http://eisabainyo.net/weblog/2008/07/20/my-experience-with-drupal/" rel="bookmark" title="July 20, 2008">My experience with Drupal</a></li>
</ul><!-- Similar Posts took 8.418 ms --></div>]]></content:encoded>
			<wfw:commentRss>http://eisabainyo.net/weblog/2010/02/26/how-to-show-hidden-files-in-fireftp/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>So you don&#8217;t like ads on websites/blogs</title>
		<link>http://eisabainyo.net/weblog/2010/02/25/so-you-dont-like-ads-on-websitesblogs/</link>
		<comments>http://eisabainyo.net/weblog/2010/02/25/so-you-dont-like-ads-on-websitesblogs/#comments</comments>
		<pubDate>Thu, 25 Feb 2010 01:07:55 +0000</pubDate>
		<dc:creator>eisabai</dc:creator>
				<category><![CDATA[Web Development Blog]]></category>

		<guid isPermaLink="false">http://eisabainyo.net/weblog/?p=1058</guid>
		<description><![CDATA[So you don&#8217;t like ads.
If you have a website that has ads, you are probably no stranger to people commenting that you have too many ads on your website.  Usually, I just smile and nod when I receive such comment but today, I thought I&#8217;d write my thoughts here.  You don&#8217;t have to [...]<p>Read <a href="http://eisabainyo.net/weblog/2010/02/25/so-you-dont-like-ads-on-websitesblogs/">So you don&#8217;t like ads on websites/blogs</a> on Web Development Blog!</p><div><h3>Other similiar posts that you might be interested in:</h3><ul><li><a href="http://eisabainyo.net/weblog/2008/01/02/the-easiest-method-to-blocking-websites/" rel="bookmark" title="January 2, 2008">The easiest method to blocking websites</a></li>

<li><a href="http://eisabainyo.net/weblog/2007/04/03/5-must-have-plugins-when-using-wordpress-as-a-cms/" rel="bookmark" title="April 3, 2007">5 must have plugins when using WordPress as a CMS</a></li>

<li><a href="http://eisabainyo.net/weblog/2009/08/13/book-review-drupal-6-content-administration/" rel="bookmark" title="August 13, 2009">Book Review: Drupal 6 Content Administration</a></li>

<li><a href="http://eisabainyo.net/weblog/2009/05/27/building-a-real-estate-website-using-wordpress/" rel="bookmark" title="May 27, 2009">Building a real estate website using WordPress</a></li>

<li><a href="http://eisabainyo.net/weblog/2009/03/18/10-website-optimisation-tips-for-web-20-websites/" rel="bookmark" title="March 18, 2009">10 Website Optimisation Tips for Web 2.0 Websites</a></li>

<li><a href="http://eisabainyo.net/weblog/2009/06/12/making-a-website-iphone-friendly-using-css/" rel="bookmark" title="June 12, 2009">Making a website iPhone-friendly using CSS</a></li>

<li><a href="http://eisabainyo.net/weblog/2010/03/01/weekly-round-up-15-must-read-development-design-and-blogging-articles-3/" rel="bookmark" title="March 1, 2010">Weekly round-up: 15 must read development, design and blogging articles</a></li>
</ul><!-- Similar Posts took 18.149 ms --></div>]]></description>
			<content:encoded><![CDATA[<p>So you don&#8217;t like ads.</p>
<p>If you have a website that has ads, you are probably no stranger to people commenting that you have too many ads on your website.  Usually, I just smile and nod when I receive such comment but today, I thought I&#8217;d write my thoughts here.  You don&#8217;t have to agree with me, and I encourage you to share your opinion in the comments section.  </p>
<p>Firstly, we see ads everywhere; at bus stops, in newspapers, in magazines, at shopping malls and so on. And I don&#8217;t see why having ads on a website makes any difference to having ads somewhere else.  </p>
<p>Secondly, as long as there is no pop-up ads or video-ads that start playing automatically on your website, I don&#8217;t think they are distracting enough to make you stop reading the content on the website.   </p>
<p>Thirdly, are you forced to click on an ad before interacting with the website such as proceeding to another page or leaving a comment?  If not, why too hard on them.  </p>
<p>I agree having ads on the website doesn&#8217;t come without drawbacks.  You, as the user, may have to scroll a bit more to read the content, the website might load a bit slower because it has to load extra data (images, javascript, etc) for the ads, it will use more bandwidth from your ISP because you&#8217;re loading more data, and some cleverly designed ads might grab your attention causing you to follow them which could possibly result in wasting your time. </p>
<p>However, you, as the user, have the right to block the ads if you find them extremely annoying by using ad-blocking plugins and software.  And as the owners of the website, we have the right to put ads on our websites with the hopes of earning some pocket money.  It also gives us an incentive to produce good content.  It is a win-win situation. </p>
<p>So, I am all for having unobtrusive ads on websites.  After all, someone has to pay for all the hosting, marketing and resources put into making and maintaining a website.  But I understand it&#8217;s a tricky issue and I&#8217;d like to hear your thoughts on this topic.  Please leave a comment to have your say and share your opinion.  </p>
<p>Read <a href="http://eisabainyo.net/weblog/2010/02/25/so-you-dont-like-ads-on-websitesblogs/">So you don&#8217;t like ads on websites/blogs</a> on Web Development Blog!</p><div><h3>Other similiar posts that you might be interested in:</h3><ul><li><a href="http://eisabainyo.net/weblog/2008/01/02/the-easiest-method-to-blocking-websites/" rel="bookmark" title="January 2, 2008">The easiest method to blocking websites</a></li>

<li><a href="http://eisabainyo.net/weblog/2007/04/03/5-must-have-plugins-when-using-wordpress-as-a-cms/" rel="bookmark" title="April 3, 2007">5 must have plugins when using WordPress as a CMS</a></li>

<li><a href="http://eisabainyo.net/weblog/2009/08/13/book-review-drupal-6-content-administration/" rel="bookmark" title="August 13, 2009">Book Review: Drupal 6 Content Administration</a></li>

<li><a href="http://eisabainyo.net/weblog/2009/05/27/building-a-real-estate-website-using-wordpress/" rel="bookmark" title="May 27, 2009">Building a real estate website using WordPress</a></li>

<li><a href="http://eisabainyo.net/weblog/2009/03/18/10-website-optimisation-tips-for-web-20-websites/" rel="bookmark" title="March 18, 2009">10 Website Optimisation Tips for Web 2.0 Websites</a></li>

<li><a href="http://eisabainyo.net/weblog/2009/06/12/making-a-website-iphone-friendly-using-css/" rel="bookmark" title="June 12, 2009">Making a website iPhone-friendly using CSS</a></li>

<li><a href="http://eisabainyo.net/weblog/2010/03/01/weekly-round-up-15-must-read-development-design-and-blogging-articles-3/" rel="bookmark" title="March 1, 2010">Weekly round-up: 15 must read development, design and blogging articles</a></li>
</ul><!-- Similar Posts took 10.445 ms --></div>]]></content:encoded>
			<wfw:commentRss>http://eisabainyo.net/weblog/2010/02/25/so-you-dont-like-ads-on-websitesblogs/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>25 Most Dangerous Programming Errors</title>
		<link>http://eisabainyo.net/weblog/2010/02/23/25-most-dangerous-programming-errors/</link>
		<comments>http://eisabainyo.net/weblog/2010/02/23/25-most-dangerous-programming-errors/#comments</comments>
		<pubDate>Tue, 23 Feb 2010 04:51:36 +0000</pubDate>
		<dc:creator>eisabai</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[WWW]]></category>

		<guid isPermaLink="false">http://eisabainyo.net/weblog/?p=1026</guid>
		<description><![CDATA[As you can see in the table below, Cross-Site Scripting, SQL Injection and Buffer overflows are three most common and serious programming errors that result in vulnerabilities.   This list was published recently on 17 February 2010.  




				Rank

				Name



				[1]

				Failure to Preserve Web Page Structure (&#39;Cross-site Scripting&#39;)



				[2]

				Improper Sanitization of Special Elements used in an SQL [...]<p>Read <a href="http://eisabainyo.net/weblog/2010/02/23/25-most-dangerous-programming-errors/">25 Most Dangerous Programming Errors</a> on Web Development Blog!</p><div><h3>Other similiar posts that you might be interested in:</h3><ul><li><a href="http://eisabainyo.net/weblog/2009/01/16/top-25-most-dangerous-programming-errors/" rel="bookmark" title="January 16, 2009">Top 25 Most Dangerous Programming Errors</a></li>

<li><a href="http://eisabainyo.net/weblog/2009/06/30/display-a-download-dialog-for-pdf-in-php/" rel="bookmark" title="June 30, 2009">Display a download dialog for pdf in PHP</a></li>

<li><a href="http://eisabainyo.net/weblog/2007/05/22/how-to-prevent-sql-injection/" rel="bookmark" title="May 22, 2007">How to prevent SQL injection?</a></li>

<li><a href="http://eisabainyo.net/weblog/2007/05/18/sql-injection-demo/" rel="bookmark" title="May 18, 2007">SQL Injection Demo</a></li>

<li><a href="http://eisabainyo.net/weblog/2009/04/06/iframe-injection-attack/" rel="bookmark" title="April 6, 2009">Troubleshooting an IFrame Injection Attack</a></li>

<li><a href="http://eisabainyo.net/weblog/2008/01/02/the-easiest-method-to-blocking-websites/" rel="bookmark" title="January 2, 2008">The easiest method to blocking websites</a></li>

<li><a href="http://eisabainyo.net/weblog/2010/01/16/tips-on-building-websites-for-mobile-browsers/" rel="bookmark" title="January 16, 2010">Tips on building websites for mobile browsers</a></li>
</ul><!-- Similar Posts took 15.873 ms --></div>]]></description>
			<content:encoded><![CDATA[<p>As you can see in the table below, Cross-Site Scripting, SQL Injection and Buffer overflows are three most common and serious programming errors that result in vulnerabilities.   This list was published recently on 17 February 2010.  </p>
<table border="0" cellpadding="0" cellspacing="5" width="100%">
<tbody>
<tr>
<th>
				Rank</th>
<th>
				Name</th>
</tr>
<tr>
<td>
				<b>[1]</b></td>
<td>
				Failure to Preserve Web Page Structure (&#39;Cross-site Scripting&#39;)</td>
</tr>
<tr>
<td>
				<b>[2]</b></td>
<td>
				Improper Sanitization of Special Elements used in an SQL Command (&#39;SQL Injection&#39;)</td>
</tr>
<tr>
<td>
				<b>[3]</b></td>
<td>
				Buffer Copy without Checking Size of Input (&#39;Classic Buffer Overflow&#39;)</td>
</tr>
<tr>
<td>
				<b>[4]</b></td>
<td>
				Cross-Site Request Forgery (CSRF)</td>
</tr>
<tr>
<td>
				<b>[5]</b></td>
<td>
				Improper Access Control (Authorization)</td>
</tr>
<tr>
<td>
				<b>[6]</b></td>
<td>
				Reliance on Untrusted Inputs in a Security Decision</td>
</tr>
<tr>
<td>
				<b>[7]</b></td>
<td>
				Improper Limitation of a Pathname to a Restricted Directory (&#39;Path Traversal&#39;)</td>
</tr>
<tr>
<td>
				<b>[8]</b></td>
<td>
				Unrestricted Upload of File with Dangerous Type</td>
</tr>
<tr>
<td>
				<b>[9]</b></td>
<td>
				Improper Sanitization of Special Elements used in an OS Command (&#39;OS Command Injection&#39;)</td>
</tr>
<tr>
<td>
				<b>[10]</b></td>
<td>
				Missing Encryption of Sensitive Data</td>
</tr>
<tr>
<td>
				<b>[11]</b></td>
<td>
				Use of Hard-coded Credentials</td>
</tr>
<tr>
<td>
				<b>[12]</b></td>
<td>
				Buffer Access with Incorrect Length Value</td>
</tr>
<tr>
<td>
				<b>[13]</b></td>
<td>
				Improper Control of Filename for Include/Require Statement in PHP Program (&#39;PHP File Inclusion&#39;)</td>
</tr>
<tr>
<td>
				<b>[14]</b></td>
<td>
				Improper Validation of Array Index</td>
</tr>
<tr>
<td>
				<b>[15]</b></td>
<td>
				Improper Check for Unusual or Exceptional Conditions</td>
</tr>
<tr>
<td>
				<b>[16]</b></td>
<td>
				Information Exposure Through an Error Message</td>
</tr>
<tr>
<td>
				<b>[17]</b></td>
<td>
				Integer Overflow or Wraparound</td>
</tr>
<tr>
<td>
				<b>[18]</b></td>
<td>
				Incorrect Calculation of Buffer Size</td>
</tr>
<tr>
<td>
				<b>[19]</b></td>
<td>
				Missing Authentication for Critical Function</td>
</tr>
<tr>
<td>
				<b>[20]</b></td>
<td>
				Download of Code Without Integrity Check</td>
</tr>
<tr>
<td>
				<b>[21]</b></td>
<td>
				Incorrect Permission Assignment for Critical Resource</td>
</tr>
<tr>
<td>
				<b>[22]</b></td>
<td>
				Allocation of Resources Without Limits or Throttling</td>
</tr>
<tr>
<td>
				<b>[23]</b></td>
<td>
				URL Redirection to Untrusted Site (&#39;Open Redirect&#39;)</td>
</tr>
<tr>
<td>
				<b>[24]</b></td>
<td>
				Use of a Broken or Risky Cryptographic Algorithm</td>
</tr>
<tr>
<td>
				<b>[25]</b></td>
<td>
				Race Condition</td>
</tr>
</tbody>
</table>
<p>Source: <a href="http://cwe.mitre.org/top25/">2010 CWE/SANS Top 25 Most Dangerous Programming Errors</a></p>
<p>Read <a href="http://eisabainyo.net/weblog/2010/02/23/25-most-dangerous-programming-errors/">25 Most Dangerous Programming Errors</a> on Web Development Blog!</p><div><h3>Other similiar posts that you might be interested in:</h3><ul><li><a href="http://eisabainyo.net/weblog/2009/01/16/top-25-most-dangerous-programming-errors/" rel="bookmark" title="January 16, 2009">Top 25 Most Dangerous Programming Errors</a></li>

<li><a href="http://eisabainyo.net/weblog/2009/06/30/display-a-download-dialog-for-pdf-in-php/" rel="bookmark" title="June 30, 2009">Display a download dialog for pdf in PHP</a></li>

<li><a href="http://eisabainyo.net/weblog/2007/05/22/how-to-prevent-sql-injection/" rel="bookmark" title="May 22, 2007">How to prevent SQL injection?</a></li>

<li><a href="http://eisabainyo.net/weblog/2007/05/18/sql-injection-demo/" rel="bookmark" title="May 18, 2007">SQL Injection Demo</a></li>

<li><a href="http://eisabainyo.net/weblog/2009/04/06/iframe-injection-attack/" rel="bookmark" title="April 6, 2009">Troubleshooting an IFrame Injection Attack</a></li>

<li><a href="http://eisabainyo.net/weblog/2008/01/02/the-easiest-method-to-blocking-websites/" rel="bookmark" title="January 2, 2008">The easiest method to blocking websites</a></li>

<li><a href="http://eisabainyo.net/weblog/2010/01/16/tips-on-building-websites-for-mobile-browsers/" rel="bookmark" title="January 16, 2010">Tips on building websites for mobile browsers</a></li>
</ul><!-- Similar Posts took 8.237 ms --></div>]]></content:encoded>
			<wfw:commentRss>http://eisabainyo.net/weblog/2010/02/23/25-most-dangerous-programming-errors/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
