<?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>iWebDevel &#187; Coding</title>
	<atom:link href="http://iwebdevel.com/category/coding/feed/" rel="self" type="application/rss+xml" />
	<link>http://iwebdevel.com</link>
	<description>Tutorials, howtos and step by step instructions to help you make the perfect web 2.0 website.</description>
	<lastBuildDate>Sun, 28 Mar 2010 15:50:35 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=abc</generator>
		<item>
		<title>SQLite, MySQL, PHP: Ternary operator (IF() statement) in MySQL and SQLite</title>
		<link>http://iwebdevel.com/2010/02/03/sqlite-mysql-php-ternary-operator-if-statement-in-mysql-and-sqlite/</link>
		<comments>http://iwebdevel.com/2010/02/03/sqlite-mysql-php-ternary-operator-if-statement-in-mysql-and-sqlite/#comments</comments>
		<pubDate>Wed, 03 Feb 2010 19:46:36 +0000</pubDate>
		<dc:creator>Dragos</dc:creator>
				<category><![CDATA[Coding]]></category>
		<category><![CDATA[MySQL]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[SQLite]]></category>
		<category><![CDATA[case when then end]]></category>
		<category><![CDATA[if statement]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[ternary operator]]></category>

		<guid isPermaLink="false">http://iwebdevel.com/?p=363</guid>
		<description><![CDATA[While working on a proxy checker tool for one of my projects, I was struggling on how to execute a conditional query on my SQLite database to update a column only if its value is greater than 0 (it would be pointless in my case to let the script update the column with negative values). [...]


Related posts:<ol><li><a href='http://iwebdevel.com/2009/06/08/wordpress-easily-reset-your-account-password-using-mysql-and-php/' rel='bookmark' title='Permanent Link: WordPress: Easily Reset Your Account Password Using MySQL and PHP'>WordPress: Easily Reset Your Account Password Using MySQL and PHP</a></li>
<li><a href='http://iwebdevel.com/2009/06/23/php-error-call-to-a-member-function-fetch_assoc-on-a-non-object-in/' rel='bookmark' title='Permanent Link: PHP Error: Call to a member function fetch_assoc() on a non-object in'>PHP Error: Call to a member function fetch_assoc() on a non-object in</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: left; margin-right: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fiwebdevel.com%2F2010%2F02%2F03%2Fsqlite-mysql-php-ternary-operator-if-statement-in-mysql-and-sqlite%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fiwebdevel.com%2F2010%2F02%2F03%2Fsqlite-mysql-php-ternary-operator-if-statement-in-mysql-and-sqlite%2F&amp;style=normal&amp;service=is.gd" height="61" width="50" /><br />
			</a>
		</div>
<p>While working on a proxy checker tool for one of my projects, I was struggling on how to execute a conditional query on my SQLite database to update a column only if its value is greater than 0 (it would be pointless in my case to let the script update the column with negative values).</p>
<p>In Mysql one would do like this (we use the ternary operator <strong>IF(to_check_expression&gt;0,expression1,expression2)</strong>):</p>
<p><code><strong>update table_name set column_name=IF((column_name-1)&gt;0,(column_name-1),0)</strong></code></p>
<p>However, in SQLite this method will not work. Instead I had to use the <strong>case when (condition) then expression1 else expression2 end</strong> method.</p>
<p>The above query in MySQL can be rewritten like this in SQLite:</p>
<p><code><strong>update table_name set column_name=case when (column_name-1)&gt;0 then (column_name-1) else 0 end</strong></code></p>
<p>That&#8217;s it. I hope it helps someone!</p>


<div class="shr-bookmarks shr-bookmarks-expand">
<ul class="socials">
		<li class="shr-comfeed">
			<a href="http://iwebdevel.com/2010/02/03/sqlite-mysql-php-ternary-operator-if-statement-in-mysql-and-sqlite/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://iwebdevel.com/2010/02/03/sqlite-mysql-php-ternary-operator-if-statement-in-mysql-and-sqlite/&amp;title=SQLite%2C+MySQL%2C+PHP%3A+Ternary+operator+%28IF%28%29+statement%29+in+MySQL+and+SQLite" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://iwebdevel.com/2010/02/03/sqlite-mysql-php-ternary-operator-if-statement-in-mysql-and-sqlite/&amp;title=SQLite%2C+MySQL%2C+PHP%3A+Ternary+operator+%28IF%28%29+statement%29+in+MySQL+and+SQLite" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-diigo">
			<a href="http://www.diigo.com/post?url=http://iwebdevel.com/2010/02/03/sqlite-mysql-php-ternary-operator-if-statement-in-mysql-and-sqlite/&amp;title=SQLite%2C+MySQL%2C+PHP%3A+Ternary+operator+%28IF%28%29+statement%29+in+MySQL+and+SQLite&amp;desc=While%20working%20on%20a%20proxy%20checker%20tool%20for%20one%20of%20my%20projects%2C%20I%20was%20struggling%20on%20how%20to%20execute%20a%20conditional%20query%20on%20my%20SQLite%20database%20to%20update%20a%20column%20only%20if%20its%20value%20is%20greater%20than%200%20%28it%20would%20be%20pointless%20in%20my%20case%20to%20let%20the%20script%20update%20the%20column%20with%20negative%20values%29.%0D%0A%0D%0AIn%20Mysql%20o" rel="nofollow" class="external" title="Post this on Diigo">Post this on Diigo</a>
		</li>
		<li class="shr-gmail">
			<a href="https://mail.google.com/mail/?ui=2&amp;view=cm&amp;fs=1&amp;tf=1&amp;su=SQLite%2C+MySQL%2C+PHP%3A+Ternary+operator+%28IF%28%29+statement%29+in+MySQL+and+SQLite&amp;body=Link: http://iwebdevel.com/2010/02/03/sqlite-mysql-php-ternary-operator-if-statement-in-mysql-and-sqlite/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A While%20working%20on%20a%20proxy%20checker%20tool%20for%20one%20of%20my%20projects%2C%20I%20was%20struggling%20on%20how%20to%20execute%20a%20conditional%20query%20on%20my%20SQLite%20database%20to%20update%20a%20column%20only%20if%20its%20value%20is%20greater%20than%200%20%28it%20would%20be%20pointless%20in%20my%20case%20to%20let%20the%20script%20update%20the%20column%20with%20negative%20values%29.%0D%0A%0D%0AIn%20Mysql%20o" rel="nofollow" class="external" title="Email this via Gmail">Email this via Gmail</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://iwebdevel.com/2010/02/03/sqlite-mysql-php-ternary-operator-if-statement-in-mysql-and-sqlite/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-misterwong">
			<a href="http://www.mister-wong.com/addurl/?bm_url=http://iwebdevel.com/2010/02/03/sqlite-mysql-php-ternary-operator-if-statement-in-mysql-and-sqlite/&amp;bm_description=SQLite%2C+MySQL%2C+PHP%3A+Ternary+operator+%28IF%28%29+statement%29+in+MySQL+and+SQLite&amp;plugin=sexybookmarks" rel="nofollow" class="external" title="Add this to Mister Wong">Add this to Mister Wong</a>
		</li>
		<li class="shr-mixx">
			<a href="http://www.mixx.com/submit?page_url=http://iwebdevel.com/2010/02/03/sqlite-mysql-php-ternary-operator-if-statement-in-mysql-and-sqlite/&amp;title=SQLite%2C+MySQL%2C+PHP%3A+Ternary+operator+%28IF%28%29+statement%29+in+MySQL+and+SQLite" rel="nofollow" class="external" title="Share this on Mixx">Share this on Mixx</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://iwebdevel.com/2010/02/03/sqlite-mysql-php-ternary-operator-if-statement-in-mysql-and-sqlite/&amp;title=SQLite%2C+MySQL%2C+PHP%3A+Ternary+operator+%28IF%28%29+statement%29+in+MySQL+and+SQLite" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://iwebdevel.com/2010/02/03/sqlite-mysql-php-ternary-operator-if-statement-in-mysql-and-sqlite/&amp;title=SQLite%2C+MySQL%2C+PHP%3A+Ternary+operator+%28IF%28%29+statement%29+in+MySQL+and+SQLite" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://iwebdevel.com/2010/02/03/sqlite-mysql-php-ternary-operator-if-statement-in-mysql-and-sqlite/" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=SQLite%2C+MySQL%2C+PHP%3A+Ternary+operator+%28IF%28%29+statement%29+in+MySQL+and+SQLite+-+http://iwebdevel.com/2010/02/03/sqlite-mysql-php-ternary-operator-if-statement-in-mysql-and-sqlite/&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>



<p>Related posts:<ol><li><a href='http://iwebdevel.com/2009/06/08/wordpress-easily-reset-your-account-password-using-mysql-and-php/' rel='bookmark' title='Permanent Link: WordPress: Easily Reset Your Account Password Using MySQL and PHP'>WordPress: Easily Reset Your Account Password Using MySQL and PHP</a></li>
<li><a href='http://iwebdevel.com/2009/06/23/php-error-call-to-a-member-function-fetch_assoc-on-a-non-object-in/' rel='bookmark' title='Permanent Link: PHP Error: Call to a member function fetch_assoc() on a non-object in'>PHP Error: Call to a member function fetch_assoc() on a non-object in</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://iwebdevel.com/2010/02/03/sqlite-mysql-php-ternary-operator-if-statement-in-mysql-and-sqlite/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Programming: Google programming language is now real! Go GO Google!</title>
		<link>http://iwebdevel.com/2009/11/12/programming-google-programming-language-is-now-real-go-google-developer-website-fast-compile-build/</link>
		<comments>http://iwebdevel.com/2009/11/12/programming-google-programming-language-is-now-real-go-google-developer-website-fast-compile-build/#comments</comments>
		<pubDate>Thu, 12 Nov 2009 09:05:34 +0000</pubDate>
		<dc:creator>Dragos</dc:creator>
				<category><![CDATA[Coding]]></category>
		<category><![CDATA[golang]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[google operating system]]></category>
		<category><![CDATA[programming language]]></category>

		<guid isPermaLink="false">http://iwebdevel.com/?p=303</guid>
		<description><![CDATA[First the Google Browser (Chrome), then the Google mobile operating system (Android), Google is getting really close to launching its own (and hopefully open source) operating system for computers. But before that, we needed to expect a &#8220;default&#8221; programming language from the Goliath of all technological times. And it&#8217;s here! GO is the name of [...]


Related posts:<ol><li><a href='http://iwebdevel.com/2009/08/09/google-search-engine-is-indexing-everything-but-how-accurate-strange-things-happening-on-iconarchive-com/' rel='bookmark' title='Permanent Link: Google search engine: is indexing everything, but how accurate? Strange things happening on IconArchive.com'>Google search engine: is indexing everything, but how accurate? Strange things happening on IconArchive.com</a></li>
<li><a href='http://iwebdevel.com/2009/09/12/webhit-find-reviewstestimonials-written-by-real-people-share-your-opinion-about-different-topics/' rel='bookmark' title='Permanent Link: Webhit: Find reviews/testimonials written by real people. Share your opinion about different topics'>Webhit: Find reviews/testimonials written by real people. Share your opinion about different topics</a></li>
<li><a href='http://iwebdevel.com/2009/09/04/wordpress-best-seo-itranslator-for-wordpress-get-free-traffic-from-fully-automated-plugin-script/' rel='bookmark' title='Permanent Link: WordPress: Best SEO iTranslator for WordPress, get free traffic from fully automated plugin script'>WordPress: Best SEO iTranslator for WordPress, get free traffic from fully automated plugin script</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: left; margin-right: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fiwebdevel.com%2F2009%2F11%2F12%2Fprogramming-google-programming-language-is-now-real-go-google-developer-website-fast-compile-build%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fiwebdevel.com%2F2009%2F11%2F12%2Fprogramming-google-programming-language-is-now-real-go-google-developer-website-fast-compile-build%2F&amp;style=normal&amp;service=is.gd" height="61" width="50" /><br />
			</a>
		</div>
<div id="attachment_304" class="wp-caption aligncenter" style="width: 563px"><a href="http://iwebdevel.com/wp-content/uploads/2009/11/GOlang.png"><img class="size-full wp-image-304" title="GOlang Google programming language" src="http://iwebdevel.com/wp-content/uploads/2009/11/GOlang.png" alt="GOlang Google programming language" width="553" height="70" /></a><p class="wp-caption-text">GOlang Google programming language</p></div>
<p>First the Google Browser (Chrome), then the Google mobile operating system (Android), Google is getting really close to launching its own (and hopefully open source) operating system for computers. But before that, we needed to expect a &#8220;default&#8221; programming language from the Goliath of all technological times. And it&#8217;s here! GO is the name of Google&#8217;s programming language, which from the words of the inventors it is a programming language that is:</p>
<ul>
<li><strong>simple</strong></li>
<li><strong>fast</strong></li>
<li><strong>safe</strong></li>
<li><strong>concurrent</strong></li>
<li><strong>fun</strong></li>
<li>and of course.. <strong>open-source</strong></li>
</ul>
<p>Though the language looks very similar to C and C++, the developers say that the GO language has many improvements that put this novelty in the same row with languages such as C, C++, Java or Python.</p>
<p>Here are some points, which are the main features of GO:</p>
<blockquote><p>Go compilers produce fast code fast. Typical builds take a fraction of a second yet the resulting programs run nearly as quickly as comparable C or C++ code.</p>
<p>Go is type safe and memory safe. Go has pointers but no pointer arithmetic. For random access, use slices, which know their limits.</p>
<p>Go promotes writing systems and servers as sets of lightweight communicating processes, called goroutines, with strong support from the language. Run thousands of goroutines if you want—and say good-bye to stack overflows.</p>
<p>Go has fast builds, clean syntax, garbage collection, methods for any type, and run-time reflection. It feels like a dynamic language but has the speed and safety of a static language. It&#8217;s a joy to use.</p></blockquote>
<p>Yet not convinced about the power of GO? Russ Cox from Google, explains the fast compiles of big programs with GO:</p>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="500" height="296" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="quality" value="high" /><param name="wmode" value="transparent" /><param name="src" value="http://www.youtube.com/v/wwoWei-GAPo&amp;hl=en_US&amp;fs=1&amp;hd=1" /><embed type="application/x-shockwave-flash" width="500" height="296" src="http://www.youtube.com/v/wwoWei-GAPo&amp;hl=en_US&amp;fs=1&amp;hd=1" wmode="transparent" quality="high"></embed></object></p>
<p>Convinced now? Then <strong><span style="color: #3366ff;">G</span><span style="color: #ff0000;">O</span> <span style="color: #ffff00;">f</span><span style="color: #3366ff;">o</span><span style="color: #339966;">r</span> <span style="color: #ff0000;">i</span><span style="color: #3366ff;">t</span></strong>! <img src='http://iwebdevel.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p><span style="color: #808080;"><strong>Note from Google</strong>: <em>The Go project was conceived to make it easier to write the kind of servers and other software Google uses internally, but the implementation isn&#8217;t quite mature enough yet for large-scale production use.</em></span></p>


<div class="shr-bookmarks shr-bookmarks-expand">
<ul class="socials">
		<li class="shr-comfeed">
			<a href="http://iwebdevel.com/2009/11/12/programming-google-programming-language-is-now-real-go-google-developer-website-fast-compile-build/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://iwebdevel.com/2009/11/12/programming-google-programming-language-is-now-real-go-google-developer-website-fast-compile-build/&amp;title=Programming%3A+Google+programming+language+is+now+real%21+Go+GO+Google%21" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://iwebdevel.com/2009/11/12/programming-google-programming-language-is-now-real-go-google-developer-website-fast-compile-build/&amp;title=Programming%3A+Google+programming+language+is+now+real%21+Go+GO+Google%21" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-diigo">
			<a href="http://www.diigo.com/post?url=http://iwebdevel.com/2009/11/12/programming-google-programming-language-is-now-real-go-google-developer-website-fast-compile-build/&amp;title=Programming%3A+Google+programming+language+is+now+real%21+Go+GO+Google%21&amp;desc=%0D%0A%0D%0AFirst%20the%20Google%20Browser%20%28Chrome%29%2C%20then%20the%20Google%20mobile%20operating%20system%20%28Android%29%2C%20Google%20is%20getting%20really%20close%20to%20launching%20its%20own%20%28and%20hopefully%20open%20source%29%20operating%20system%20for%20computers.%20But%20before%20that%2C%20we%20needed%20to%20expect%20a%20%22default%22%20programming%20language%20from%20the%20Goliath%20of%20all%20tech" rel="nofollow" class="external" title="Post this on Diigo">Post this on Diigo</a>
		</li>
		<li class="shr-gmail">
			<a href="https://mail.google.com/mail/?ui=2&amp;view=cm&amp;fs=1&amp;tf=1&amp;su=Programming%3A+Google+programming+language+is+now+real%21+Go+GO+Google%21&amp;body=Link: http://iwebdevel.com/2009/11/12/programming-google-programming-language-is-now-real-go-google-developer-website-fast-compile-build/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A %0D%0A%0D%0AFirst%20the%20Google%20Browser%20%28Chrome%29%2C%20then%20the%20Google%20mobile%20operating%20system%20%28Android%29%2C%20Google%20is%20getting%20really%20close%20to%20launching%20its%20own%20%28and%20hopefully%20open%20source%29%20operating%20system%20for%20computers.%20But%20before%20that%2C%20we%20needed%20to%20expect%20a%20%22default%22%20programming%20language%20from%20the%20Goliath%20of%20all%20tech" rel="nofollow" class="external" title="Email this via Gmail">Email this via Gmail</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://iwebdevel.com/2009/11/12/programming-google-programming-language-is-now-real-go-google-developer-website-fast-compile-build/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-misterwong">
			<a href="http://www.mister-wong.com/addurl/?bm_url=http://iwebdevel.com/2009/11/12/programming-google-programming-language-is-now-real-go-google-developer-website-fast-compile-build/&amp;bm_description=Programming%3A+Google+programming+language+is+now+real%21+Go+GO+Google%21&amp;plugin=sexybookmarks" rel="nofollow" class="external" title="Add this to Mister Wong">Add this to Mister Wong</a>
		</li>
		<li class="shr-mixx">
			<a href="http://www.mixx.com/submit?page_url=http://iwebdevel.com/2009/11/12/programming-google-programming-language-is-now-real-go-google-developer-website-fast-compile-build/&amp;title=Programming%3A+Google+programming+language+is+now+real%21+Go+GO+Google%21" rel="nofollow" class="external" title="Share this on Mixx">Share this on Mixx</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://iwebdevel.com/2009/11/12/programming-google-programming-language-is-now-real-go-google-developer-website-fast-compile-build/&amp;title=Programming%3A+Google+programming+language+is+now+real%21+Go+GO+Google%21" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://iwebdevel.com/2009/11/12/programming-google-programming-language-is-now-real-go-google-developer-website-fast-compile-build/&amp;title=Programming%3A+Google+programming+language+is+now+real%21+Go+GO+Google%21" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://iwebdevel.com/2009/11/12/programming-google-programming-language-is-now-real-go-google-developer-website-fast-compile-build/" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=Programming%3A+Google+programming+language+is+now+real%21+Go+GO+Google%21+-+http://iwebdevel.com/2009/11/12/programming-google-programming-language-is-now-real-go-google-developer-website-fast-compile-build/&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>



<p>Related posts:<ol><li><a href='http://iwebdevel.com/2009/08/09/google-search-engine-is-indexing-everything-but-how-accurate-strange-things-happening-on-iconarchive-com/' rel='bookmark' title='Permanent Link: Google search engine: is indexing everything, but how accurate? Strange things happening on IconArchive.com'>Google search engine: is indexing everything, but how accurate? Strange things happening on IconArchive.com</a></li>
<li><a href='http://iwebdevel.com/2009/09/12/webhit-find-reviewstestimonials-written-by-real-people-share-your-opinion-about-different-topics/' rel='bookmark' title='Permanent Link: Webhit: Find reviews/testimonials written by real people. Share your opinion about different topics'>Webhit: Find reviews/testimonials written by real people. Share your opinion about different topics</a></li>
<li><a href='http://iwebdevel.com/2009/09/04/wordpress-best-seo-itranslator-for-wordpress-get-free-traffic-from-fully-automated-plugin-script/' rel='bookmark' title='Permanent Link: WordPress: Best SEO iTranslator for WordPress, get free traffic from fully automated plugin script'>WordPress: Best SEO iTranslator for WordPress, get free traffic from fully automated plugin script</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://iwebdevel.com/2009/11/12/programming-google-programming-language-is-now-real-go-google-developer-website-fast-compile-build/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>PHP: How to download a webpage (aka web scrapping) with PHP</title>
		<link>http://iwebdevel.com/2009/10/03/php-how-to-download-a-webpage-aka-web-scrapping-with-php-fsockopen-file_get_contents-curl-function-download-web-page/</link>
		<comments>http://iwebdevel.com/2009/10/03/php-how-to-download-a-webpage-aka-web-scrapping-with-php-fsockopen-file_get_contents-curl-function-download-web-page/#comments</comments>
		<pubDate>Sat, 03 Oct 2009 08:08:27 +0000</pubDate>
		<dc:creator>Dragos</dc:creator>
				<category><![CDATA[Coding]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[curl]]></category>
		<category><![CDATA[download function]]></category>
		<category><![CDATA[file_get_contents]]></category>
		<category><![CDATA[fsockopen]]></category>
		<category><![CDATA[php download]]></category>
		<category><![CDATA[scrap function]]></category>
		<category><![CDATA[web download]]></category>
		<category><![CDATA[web scrapping]]></category>

		<guid isPermaLink="false">http://iwebdevel.com/?p=249</guid>
		<description><![CDATA[There are many ways of downloading web pages, or web content. Personally I like to use cURL for my web scrapping needs, but sometimes I also use fsockopen and file_get_contents. Here are 3 different functions that will allow you to download web content. cURL: function getData($url) { if($url!='localhost' &#38;&#38; $url!='http://localhost') { $ch=curl_init(); curl_setopt($ch, CURLOPT_URL, $url); [...]


Related posts:<ol><li><a href='http://iwebdevel.com/2009/07/29/javascript-send-function-as-a-parameter-to-another-function-callbacks/' rel='bookmark' title='Permanent Link: JavaScript: Send function as a parameter to another function (callbacks)'>JavaScript: Send function as a parameter to another function (callbacks)</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: left; margin-right: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fiwebdevel.com%2F2009%2F10%2F03%2Fphp-how-to-download-a-webpage-aka-web-scrapping-with-php-fsockopen-file_get_contents-curl-function-download-web-page%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fiwebdevel.com%2F2009%2F10%2F03%2Fphp-how-to-download-a-webpage-aka-web-scrapping-with-php-fsockopen-file_get_contents-curl-function-download-web-page%2F&amp;style=normal&amp;service=is.gd" height="61" width="50" /><br />
			</a>
		</div>
<p>There are many ways of downloading web pages, or web content. Personally I like to use <strong>cURL</strong> for my web scrapping needs, but sometimes I also use <strong>fsockopen</strong> and <strong>file_get_contents</strong>.</p>
<p>Here are 3 different functions that will allow you to download web content.</p>
<p><strong>cURL</strong>:</p>
<pre name="code" class="php">function getData($url) {
    if($url!='localhost' &amp;&amp; $url!='http://localhost') {
        $ch=curl_init();
        curl_setopt($ch, CURLOPT_URL, $url);
        curl_setopt($ch, CURLOPT_RETURNTRANSFER, TRUE);
        curl_setopt($ch,CURLOPT_USERAGENT,"Mozilla/6.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.0.1) Gecko/2008070208 Firefox/3.0.3");
        curl_setopt($ch, CURLOPT_FOLLOWLOCATION,3);
        $result['data']=curl_exec($ch);
        $result['error']=curl_error($ch);
        curl_close($ch);
        return $result;
    }
    else return $result['error']='err';
}</pre>
<p><strong>fsockopen</strong></p>
<pre name="code" class="php">function getData($url) {
    $arr=parse_url($url);
    $fp = fsockopen($arr['host'], 80, $errno, $errstr, 30);
    if(!$fp) {
        return false;
    }else {
    // send headers
        $out = "GET ".fsockopen($arr['host'], 80, $errno, $errstr, 30)." HTTP/1.1\r\n";
        $out .= "Host: ".str_replace('http://'.$arr['host'],'',$url)."\r\n";
        $out .= "User-Agent: FSOCKOPEN\r\n";
        $out .= "Connection: Close\r\n\r\n";
        fwrite($fp, $out);
        while(!feof($fp)) {
            $contents .= fgets($fp, 4096);
        };
        fclose($fp);
        return $contents;
    }
}</pre>
<p><strong>file_get_contents</strong></p>
<pre name="code" class="php">function getData($url) {
return file_get_contents($url);
}</pre>
<p>As you see the easiest way of downloading web content is by using the <strong>file_get_contents</strong> function, but if you need more options, especially if you are working with the headers, then <strong>cURL</strong> is the best way to go for you.</p>


<div class="shr-bookmarks shr-bookmarks-expand">
<ul class="socials">
		<li class="shr-comfeed">
			<a href="http://iwebdevel.com/2009/10/03/php-how-to-download-a-webpage-aka-web-scrapping-with-php-fsockopen-file_get_contents-curl-function-download-web-page/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://iwebdevel.com/2009/10/03/php-how-to-download-a-webpage-aka-web-scrapping-with-php-fsockopen-file_get_contents-curl-function-download-web-page/&amp;title=PHP%3A+How+to+download+a+webpage+%28aka+web+scrapping%29+with+PHP" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://iwebdevel.com/2009/10/03/php-how-to-download-a-webpage-aka-web-scrapping-with-php-fsockopen-file_get_contents-curl-function-download-web-page/&amp;title=PHP%3A+How+to+download+a+webpage+%28aka+web+scrapping%29+with+PHP" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-diigo">
			<a href="http://www.diigo.com/post?url=http://iwebdevel.com/2009/10/03/php-how-to-download-a-webpage-aka-web-scrapping-with-php-fsockopen-file_get_contents-curl-function-download-web-page/&amp;title=PHP%3A+How+to+download+a+webpage+%28aka+web+scrapping%29+with+PHP&amp;desc=There%20are%20many%20ways%20of%20downloading%20web%20pages%2C%20or%20web%20content.%20Personally%20I%20like%20to%20use%20cURL%20for%20my%20web%20scrapping%20needs%2C%20but%20sometimes%20I%20also%20use%20fsockopen%20and%20file_get_contents.%0D%0A%0D%0AHere%20are%203%20different%20functions%20that%20will%20allow%20you%20to%20download%20web%20content.%0D%0A%0D%0AcURL%3A%0D%0Afunction%20getData%28%24url%29%20%7B%0D%0A%20%20%20%20if%28" rel="nofollow" class="external" title="Post this on Diigo">Post this on Diigo</a>
		</li>
		<li class="shr-gmail">
			<a href="https://mail.google.com/mail/?ui=2&amp;view=cm&amp;fs=1&amp;tf=1&amp;su=PHP%3A+How+to+download+a+webpage+%28aka+web+scrapping%29+with+PHP&amp;body=Link: http://iwebdevel.com/2009/10/03/php-how-to-download-a-webpage-aka-web-scrapping-with-php-fsockopen-file_get_contents-curl-function-download-web-page/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A There%20are%20many%20ways%20of%20downloading%20web%20pages%2C%20or%20web%20content.%20Personally%20I%20like%20to%20use%20cURL%20for%20my%20web%20scrapping%20needs%2C%20but%20sometimes%20I%20also%20use%20fsockopen%20and%20file_get_contents.%0D%0A%0D%0AHere%20are%203%20different%20functions%20that%20will%20allow%20you%20to%20download%20web%20content.%0D%0A%0D%0AcURL%3A%0D%0Afunction%20getData%28%24url%29%20%7B%0D%0A%20%20%20%20if%28" rel="nofollow" class="external" title="Email this via Gmail">Email this via Gmail</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://iwebdevel.com/2009/10/03/php-how-to-download-a-webpage-aka-web-scrapping-with-php-fsockopen-file_get_contents-curl-function-download-web-page/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-misterwong">
			<a href="http://www.mister-wong.com/addurl/?bm_url=http://iwebdevel.com/2009/10/03/php-how-to-download-a-webpage-aka-web-scrapping-with-php-fsockopen-file_get_contents-curl-function-download-web-page/&amp;bm_description=PHP%3A+How+to+download+a+webpage+%28aka+web+scrapping%29+with+PHP&amp;plugin=sexybookmarks" rel="nofollow" class="external" title="Add this to Mister Wong">Add this to Mister Wong</a>
		</li>
		<li class="shr-mixx">
			<a href="http://www.mixx.com/submit?page_url=http://iwebdevel.com/2009/10/03/php-how-to-download-a-webpage-aka-web-scrapping-with-php-fsockopen-file_get_contents-curl-function-download-web-page/&amp;title=PHP%3A+How+to+download+a+webpage+%28aka+web+scrapping%29+with+PHP" rel="nofollow" class="external" title="Share this on Mixx">Share this on Mixx</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://iwebdevel.com/2009/10/03/php-how-to-download-a-webpage-aka-web-scrapping-with-php-fsockopen-file_get_contents-curl-function-download-web-page/&amp;title=PHP%3A+How+to+download+a+webpage+%28aka+web+scrapping%29+with+PHP" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://iwebdevel.com/2009/10/03/php-how-to-download-a-webpage-aka-web-scrapping-with-php-fsockopen-file_get_contents-curl-function-download-web-page/&amp;title=PHP%3A+How+to+download+a+webpage+%28aka+web+scrapping%29+with+PHP" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://iwebdevel.com/2009/10/03/php-how-to-download-a-webpage-aka-web-scrapping-with-php-fsockopen-file_get_contents-curl-function-download-web-page/" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=PHP%3A+How+to+download+a+webpage+%28aka+web+scrapping%29+with+PHP+-+http://iwebdevel.com/2009/10/03/php-how-to-download-a-webpage-aka-web-scrapping-with-php-fsockopen-file_get_contents-curl-function-download-web-page/&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>



<p>Related posts:<ol><li><a href='http://iwebdevel.com/2009/07/29/javascript-send-function-as-a-parameter-to-another-function-callbacks/' rel='bookmark' title='Permanent Link: JavaScript: Send function as a parameter to another function (callbacks)'>JavaScript: Send function as a parameter to another function (callbacks)</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://iwebdevel.com/2009/10/03/php-how-to-download-a-webpage-aka-web-scrapping-with-php-fsockopen-file_get_contents-curl-function-download-web-page/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>WordPress: Best SEO iTranslator for WordPress, get free traffic from fully automated plugin script</title>
		<link>http://iwebdevel.com/2009/09/04/wordpress-best-seo-itranslator-for-wordpress-get-free-traffic-from-fully-automated-plugin-script/</link>
		<comments>http://iwebdevel.com/2009/09/04/wordpress-best-seo-itranslator-for-wordpress-get-free-traffic-from-fully-automated-plugin-script/#comments</comments>
		<pubDate>Fri, 04 Sep 2009 15:30:59 +0000</pubDate>
		<dc:creator>Dragos</dc:creator>
				<category><![CDATA[Coding]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[best seo translator for wordpress]]></category>
		<category><![CDATA[google translate blog posts]]></category>
		<category><![CDATA[multiple languages posts]]></category>
		<category><![CDATA[page translator]]></category>
		<category><![CDATA[posts translate]]></category>
		<category><![CDATA[seo translator]]></category>
		<category><![CDATA[translator]]></category>

		<guid isPermaLink="false">http://iwebdevel.com/?p=216</guid>
		<description><![CDATA[I&#8217;ve just decided to publish my translation plugin for WordPress. It has helped me a lot to get free traffic, so I think other people might find it also useful. == Description == Best SEO iTranslator for WordPress is a translation plugin, fully automated, that will help you get new traffic and at the same [...]


Related posts:<ol><li><a href='http://iwebdevel.com/2009/09/01/wordpress-2-8-not-ready-to-be-installed-with-php-5-3/' rel='bookmark' title='Permanent Link: WordPress 2.8.4: Not ready to be installed with PHP 5.3 ?'>WordPress 2.8.4: Not ready to be installed with PHP 5.3 ?</a></li>
<li><a href='http://iwebdevel.com/2009/11/13/wordpress-version-2-8-6-is-out-make-sure-to-update-your-blog-critical-fixes-exploits-xss-download/' rel='bookmark' title='Permanent Link: WordPress: Version 2.8.6 is out. Make sure to update your blog!'>WordPress: Version 2.8.6 is out. Make sure to update your blog!</a></li>
<li><a href='http://iwebdevel.com/2009/06/08/wordpress-easily-reset-your-account-password-using-mysql-and-php/' rel='bookmark' title='Permanent Link: WordPress: Easily Reset Your Account Password Using MySQL and PHP'>WordPress: Easily Reset Your Account Password Using MySQL and PHP</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: left; margin-right: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fiwebdevel.com%2F2009%2F09%2F04%2Fwordpress-best-seo-itranslator-for-wordpress-get-free-traffic-from-fully-automated-plugin-script%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fiwebdevel.com%2F2009%2F09%2F04%2Fwordpress-best-seo-itranslator-for-wordpress-get-free-traffic-from-fully-automated-plugin-script%2F&amp;style=normal&amp;service=is.gd" height="61" width="50" /><br />
			</a>
		</div>
<p>I&#8217;ve just decided to publish my translation plugin for WordPress. It has helped me a lot to get free traffic, so I think other people might find it also useful.</p>
<h3>== Description ==</h3>
<p>Best SEO iTranslator for WordPress is a translation plugin, fully automated, that will help you get new traffic and at the same time help your readers translate your posts in their native languages (from the available 40 languages). This is a perfect SEO instrument for those who want to get traffic from search engines. Best SEO iTranslator for WordPress generates new translated posts, which are treated by search engines as being new different posts, containing different information.</p>
<h3>== Installation ==</h3>
<p>Upload this plugin in your plugins folder on your host. Enable Best SEO iTranslator for WordPress from the plugin management page.</p>
<h3>== Configuration ==</h3>
<p>From Settings-&gt;BSW iTranslator select the language your blog is written in. On the same page, choose what languages you would like to have your blog posts translated in.</p>
<h3>== Frequently Asked Questions ==</h3>
<h4>= The translation time takes a little bit longer than my blog usually loads. Why? =</h4>
<p>This is normal. This plugin relies on an external website (Google Translate) and the loading time of your translated posts mainly depends on how fast Google will translate your pages. If it takes more than 10 seconds, there must be something wrong with your server. In this case check your host&#8217;s error log to see whether everything is OK with your hosting.</p>
<h4>= &#8220;Please return to this page in some minutes.&#8221; message =</h4>
<p>There has been something wrong with the translation process, or Google temporarily banned your website for excessive queries. Don&#8217;t worry! A 503 Service Temporarily Unavailable message is displayed to both human readers and search bots, informing them that the page is not available at the moment.</p>
<h4>= The cache gets too large in size =</h4>
<p>This is normal. Every page is stored in a cached file, so the next time a request is made for that page, it is quickly fetched from the cache, saving a lot of time and server resources. The cache can grow quickly in size, make sure you have the required space on your server, before activating the plugin.</p>
<h4>= The translated page has a bad/broken layout =</h4>
<p>Usually Google Translate will deliver translated pages in the original format, however it may happen sometimes to get a page with a broken layout. Unfortunately, it is almost impossible to regenerate such broken files automatically.</p>
<h4>= Why does a yellow box appear at the top of my translated page? =</h4>
<p>That box informs the readers that the page they are currently viewing is a translated version and the original source is to be found in a different place (link provided).</p>
<h4>= What is Cache Duration? =</h4>
<p>Cache Duration is the time a cached file can stay on your server before it can be removed with a new one (if obsolete). Best Cache Duration time to set in the plugins settings are higher than 86000 seconds (one day). If you notice that translated pages are displayed correctly and they don&#8217;t need to be replaced, set the Cache Duration to 1 week or more (use the calculator to get the value in seconds: Xdays*24hours*60minutes*60seconds)</p>
<h4>= Best SEO iTranslator for WordPress plugin doesn&#8217;t work =</h4>
<p>First things to check is that the cache folder inside the plugin&#8217;s directory exists and is chmoded to 0755. If that is not the problem you may write a comment message on my blog at  , and I&#8217;ll see what I can do to help you.</p>
<h2>DEMO</h2>
<p>To see this plugin in action, just scroll down to the end of this post and you&#8217;ll see the option to translate the current post. Choose whatever language you want.</p>
<p><strong>Update</strong>: This plugin has been tested with PHP 5.3 . I do not guarantee that it will work with earlier versions of PHP.</p>
<h2>DOWNLOAD</h2>
<p>Download from here: <a href="http://downloads.wordpress.org/plugin/best-seo-itranslator-for-wordpress.zip">Best SEO iTranslator for WordPress</a></p>


<div class="shr-bookmarks shr-bookmarks-expand">
<ul class="socials">
		<li class="shr-comfeed">
			<a href="http://iwebdevel.com/2009/09/04/wordpress-best-seo-itranslator-for-wordpress-get-free-traffic-from-fully-automated-plugin-script/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://iwebdevel.com/2009/09/04/wordpress-best-seo-itranslator-for-wordpress-get-free-traffic-from-fully-automated-plugin-script/&amp;title=Wordpress%3A+Best+SEO+iTranslator+for+Wordpress%2C+get+free+traffic+from+fully+automated+plugin+script" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://iwebdevel.com/2009/09/04/wordpress-best-seo-itranslator-for-wordpress-get-free-traffic-from-fully-automated-plugin-script/&amp;title=Wordpress%3A+Best+SEO+iTranslator+for+Wordpress%2C+get+free+traffic+from+fully+automated+plugin+script" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-diigo">
			<a href="http://www.diigo.com/post?url=http://iwebdevel.com/2009/09/04/wordpress-best-seo-itranslator-for-wordpress-get-free-traffic-from-fully-automated-plugin-script/&amp;title=Wordpress%3A+Best+SEO+iTranslator+for+Wordpress%2C+get+free+traffic+from+fully+automated+plugin+script&amp;desc=I%27ve%20just%20decided%20to%20publish%20my%20translation%20plugin%20for%20Wordpress.%20It%20has%20helped%20me%20a%20lot%20to%20get%20free%20traffic%2C%20so%20I%20think%20other%20people%20might%20find%20it%20also%20useful.%0D%0A%3D%3D%20Description%20%3D%3D%0D%0ABest%20SEO%20iTranslator%20for%20Wordpress%20is%20a%20translation%20plugin%2C%20fully%20automated%2C%20that%20will%20help%20you%20get%20new%20traffic%20and%20at%20" rel="nofollow" class="external" title="Post this on Diigo">Post this on Diigo</a>
		</li>
		<li class="shr-gmail">
			<a href="https://mail.google.com/mail/?ui=2&amp;view=cm&amp;fs=1&amp;tf=1&amp;su=Wordpress%3A+Best+SEO+iTranslator+for+Wordpress%2C+get+free+traffic+from+fully+automated+plugin+script&amp;body=Link: http://iwebdevel.com/2009/09/04/wordpress-best-seo-itranslator-for-wordpress-get-free-traffic-from-fully-automated-plugin-script/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A I%27ve%20just%20decided%20to%20publish%20my%20translation%20plugin%20for%20Wordpress.%20It%20has%20helped%20me%20a%20lot%20to%20get%20free%20traffic%2C%20so%20I%20think%20other%20people%20might%20find%20it%20also%20useful.%0D%0A%3D%3D%20Description%20%3D%3D%0D%0ABest%20SEO%20iTranslator%20for%20Wordpress%20is%20a%20translation%20plugin%2C%20fully%20automated%2C%20that%20will%20help%20you%20get%20new%20traffic%20and%20at%20" rel="nofollow" class="external" title="Email this via Gmail">Email this via Gmail</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://iwebdevel.com/2009/09/04/wordpress-best-seo-itranslator-for-wordpress-get-free-traffic-from-fully-automated-plugin-script/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-misterwong">
			<a href="http://www.mister-wong.com/addurl/?bm_url=http://iwebdevel.com/2009/09/04/wordpress-best-seo-itranslator-for-wordpress-get-free-traffic-from-fully-automated-plugin-script/&amp;bm_description=Wordpress%3A+Best+SEO+iTranslator+for+Wordpress%2C+get+free+traffic+from+fully+automated+plugin+script&amp;plugin=sexybookmarks" rel="nofollow" class="external" title="Add this to Mister Wong">Add this to Mister Wong</a>
		</li>
		<li class="shr-mixx">
			<a href="http://www.mixx.com/submit?page_url=http://iwebdevel.com/2009/09/04/wordpress-best-seo-itranslator-for-wordpress-get-free-traffic-from-fully-automated-plugin-script/&amp;title=Wordpress%3A+Best+SEO+iTranslator+for+Wordpress%2C+get+free+traffic+from+fully+automated+plugin+script" rel="nofollow" class="external" title="Share this on Mixx">Share this on Mixx</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://iwebdevel.com/2009/09/04/wordpress-best-seo-itranslator-for-wordpress-get-free-traffic-from-fully-automated-plugin-script/&amp;title=Wordpress%3A+Best+SEO+iTranslator+for+Wordpress%2C+get+free+traffic+from+fully+automated+plugin+script" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://iwebdevel.com/2009/09/04/wordpress-best-seo-itranslator-for-wordpress-get-free-traffic-from-fully-automated-plugin-script/&amp;title=Wordpress%3A+Best+SEO+iTranslator+for+Wordpress%2C+get+free+traffic+from+fully+automated+plugin+script" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://iwebdevel.com/2009/09/04/wordpress-best-seo-itranslator-for-wordpress-get-free-traffic-from-fully-automated-plugin-script/" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=Wordpress%3A+Best+SEO+iTranslator+for+Wordpress%2C+get+free+traffic+from+fully+autom%5B..%5D+-+http://iwebdevel.com/2009/09/04/wordpress-best-seo-itranslator-for-wordpress-get-free-traffic-from-fully-automated-plugin-script/&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>



<p>Related posts:<ol><li><a href='http://iwebdevel.com/2009/09/01/wordpress-2-8-not-ready-to-be-installed-with-php-5-3/' rel='bookmark' title='Permanent Link: WordPress 2.8.4: Not ready to be installed with PHP 5.3 ?'>WordPress 2.8.4: Not ready to be installed with PHP 5.3 ?</a></li>
<li><a href='http://iwebdevel.com/2009/11/13/wordpress-version-2-8-6-is-out-make-sure-to-update-your-blog-critical-fixes-exploits-xss-download/' rel='bookmark' title='Permanent Link: WordPress: Version 2.8.6 is out. Make sure to update your blog!'>WordPress: Version 2.8.6 is out. Make sure to update your blog!</a></li>
<li><a href='http://iwebdevel.com/2009/06/08/wordpress-easily-reset-your-account-password-using-mysql-and-php/' rel='bookmark' title='Permanent Link: WordPress: Easily Reset Your Account Password Using MySQL and PHP'>WordPress: Easily Reset Your Account Password Using MySQL and PHP</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://iwebdevel.com/2009/09/04/wordpress-best-seo-itranslator-for-wordpress-get-free-traffic-from-fully-automated-plugin-script/feed/</wfw:commentRss>
		<slash:comments>88</slash:comments>
		</item>
		<item>
		<title>WordPress 2.8.4: Not ready to be installed with PHP 5.3 ?</title>
		<link>http://iwebdevel.com/2009/09/01/wordpress-2-8-not-ready-to-be-installed-with-php-5-3/</link>
		<comments>http://iwebdevel.com/2009/09/01/wordpress-2-8-not-ready-to-be-installed-with-php-5-3/#comments</comments>
		<pubDate>Tue, 01 Sep 2009 19:43:24 +0000</pubDate>
		<dc:creator>Dragos</dc:creator>
				<category><![CDATA[Coding]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[error]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://iwebdevel.com/?p=211</guid>
		<description><![CDATA[I&#8217;ve just tried to install WordPress 2.8.4 on my testing machine (PHP 5.3). Right on the installation page a dozen of errors filled my screen, something like: Strict Standards: Declaration of Walker_Page::start_lvl() should be compatible with that of Walker::start_lvl() in /opt/lampp/htdocs/wordpress/wp-includes/classes.php on line 1214 This is not a big issue and it doesn&#8217;t interrupt the [...]


Related posts:<ol><li><a href='http://iwebdevel.com/2009/09/04/wordpress-best-seo-itranslator-for-wordpress-get-free-traffic-from-fully-automated-plugin-script/' rel='bookmark' title='Permanent Link: WordPress: Best SEO iTranslator for WordPress, get free traffic from fully automated plugin script'>WordPress: Best SEO iTranslator for WordPress, get free traffic from fully automated plugin script</a></li>
<li><a href='http://iwebdevel.com/2009/06/08/wordpress-easily-reset-your-account-password-using-mysql-and-php/' rel='bookmark' title='Permanent Link: WordPress: Easily Reset Your Account Password Using MySQL and PHP'>WordPress: Easily Reset Your Account Password Using MySQL and PHP</a></li>
<li><a href='http://iwebdevel.com/2009/06/13/javascript-how-to-validate-email-address-with-javascript/' rel='bookmark' title='Permanent Link: Javascript: How to validate email address with JavaScript?'>Javascript: How to validate email address with JavaScript?</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: left; margin-right: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fiwebdevel.com%2F2009%2F09%2F01%2Fwordpress-2-8-not-ready-to-be-installed-with-php-5-3%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fiwebdevel.com%2F2009%2F09%2F01%2Fwordpress-2-8-not-ready-to-be-installed-with-php-5-3%2F&amp;style=normal&amp;service=is.gd" height="61" width="50" /><br />
			</a>
		</div>
<p>I&#8217;ve just tried to install WordPress 2.8.4 on my testing machine (PHP 5.3). Right on the installation page a dozen of errors filled my screen, something like:</p>
<blockquote><p><strong>Strict Standards</strong>:  Declaration of Walker_Page::start_lvl() should be compatible with that of Walker::start_lvl() in <strong>/opt/lampp/htdocs/wordpress/wp-includes/classes.php</strong> on line <strong>1214</strong></p></blockquote>
<p>This is not a big issue and it doesn&#8217;t interrupt the installation, it&#8217;s just that PHP 5.3 has many new changes compared to previous versions of PHP. However, wordpress should still correct those errors, because it doesn&#8217;t look so good to see errors right on the installation page.</p>


<div class="shr-bookmarks shr-bookmarks-expand">
<ul class="socials">
		<li class="shr-comfeed">
			<a href="http://iwebdevel.com/2009/09/01/wordpress-2-8-not-ready-to-be-installed-with-php-5-3/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://iwebdevel.com/2009/09/01/wordpress-2-8-not-ready-to-be-installed-with-php-5-3/&amp;title=Wordpress+2.8.4%3A+Not+ready+to+be+installed+with+PHP+5.3+%3F" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://iwebdevel.com/2009/09/01/wordpress-2-8-not-ready-to-be-installed-with-php-5-3/&amp;title=Wordpress+2.8.4%3A+Not+ready+to+be+installed+with+PHP+5.3+%3F" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-diigo">
			<a href="http://www.diigo.com/post?url=http://iwebdevel.com/2009/09/01/wordpress-2-8-not-ready-to-be-installed-with-php-5-3/&amp;title=Wordpress+2.8.4%3A+Not+ready+to+be+installed+with+PHP+5.3+%3F&amp;desc=I%27ve%20just%20tried%20to%20install%20Wordpress%202.8.4%20on%20my%20testing%20machine%20%28PHP%205.3%29.%20Right%20on%20the%20installation%20page%20a%20dozen%20of%20errors%20filled%20my%20screen%2C%20something%20like%3A%0D%0AStrict%20Standards%3A%20%20Declaration%20of%20Walker_Page%3A%3Astart_lvl%28%29%20should%20be%20compatible%20with%20that%20of%20Walker%3A%3Astart_lvl%28%29%20in%20%2Fopt%2Flampp%2Fhtdocs%2Fwordpr" rel="nofollow" class="external" title="Post this on Diigo">Post this on Diigo</a>
		</li>
		<li class="shr-gmail">
			<a href="https://mail.google.com/mail/?ui=2&amp;view=cm&amp;fs=1&amp;tf=1&amp;su=Wordpress+2.8.4%3A+Not+ready+to+be+installed+with+PHP+5.3+%3F&amp;body=Link: http://iwebdevel.com/2009/09/01/wordpress-2-8-not-ready-to-be-installed-with-php-5-3/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A I%27ve%20just%20tried%20to%20install%20Wordpress%202.8.4%20on%20my%20testing%20machine%20%28PHP%205.3%29.%20Right%20on%20the%20installation%20page%20a%20dozen%20of%20errors%20filled%20my%20screen%2C%20something%20like%3A%0D%0AStrict%20Standards%3A%20%20Declaration%20of%20Walker_Page%3A%3Astart_lvl%28%29%20should%20be%20compatible%20with%20that%20of%20Walker%3A%3Astart_lvl%28%29%20in%20%2Fopt%2Flampp%2Fhtdocs%2Fwordpr" rel="nofollow" class="external" title="Email this via Gmail">Email this via Gmail</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://iwebdevel.com/2009/09/01/wordpress-2-8-not-ready-to-be-installed-with-php-5-3/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-misterwong">
			<a href="http://www.mister-wong.com/addurl/?bm_url=http://iwebdevel.com/2009/09/01/wordpress-2-8-not-ready-to-be-installed-with-php-5-3/&amp;bm_description=Wordpress+2.8.4%3A+Not+ready+to+be+installed+with+PHP+5.3+%3F&amp;plugin=sexybookmarks" rel="nofollow" class="external" title="Add this to Mister Wong">Add this to Mister Wong</a>
		</li>
		<li class="shr-mixx">
			<a href="http://www.mixx.com/submit?page_url=http://iwebdevel.com/2009/09/01/wordpress-2-8-not-ready-to-be-installed-with-php-5-3/&amp;title=Wordpress+2.8.4%3A+Not+ready+to+be+installed+with+PHP+5.3+%3F" rel="nofollow" class="external" title="Share this on Mixx">Share this on Mixx</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://iwebdevel.com/2009/09/01/wordpress-2-8-not-ready-to-be-installed-with-php-5-3/&amp;title=Wordpress+2.8.4%3A+Not+ready+to+be+installed+with+PHP+5.3+%3F" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://iwebdevel.com/2009/09/01/wordpress-2-8-not-ready-to-be-installed-with-php-5-3/&amp;title=Wordpress+2.8.4%3A+Not+ready+to+be+installed+with+PHP+5.3+%3F" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://iwebdevel.com/2009/09/01/wordpress-2-8-not-ready-to-be-installed-with-php-5-3/" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=Wordpress+2.8.4%3A+Not+ready+to+be+installed+with+PHP+5.3+%3F+-+http://iwebdevel.com/2009/09/01/wordpress-2-8-not-ready-to-be-installed-with-php-5-3/&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>



<p>Related posts:<ol><li><a href='http://iwebdevel.com/2009/09/04/wordpress-best-seo-itranslator-for-wordpress-get-free-traffic-from-fully-automated-plugin-script/' rel='bookmark' title='Permanent Link: WordPress: Best SEO iTranslator for WordPress, get free traffic from fully automated plugin script'>WordPress: Best SEO iTranslator for WordPress, get free traffic from fully automated plugin script</a></li>
<li><a href='http://iwebdevel.com/2009/06/08/wordpress-easily-reset-your-account-password-using-mysql-and-php/' rel='bookmark' title='Permanent Link: WordPress: Easily Reset Your Account Password Using MySQL and PHP'>WordPress: Easily Reset Your Account Password Using MySQL and PHP</a></li>
<li><a href='http://iwebdevel.com/2009/06/13/javascript-how-to-validate-email-address-with-javascript/' rel='bookmark' title='Permanent Link: Javascript: How to validate email address with JavaScript?'>Javascript: How to validate email address with JavaScript?</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://iwebdevel.com/2009/09/01/wordpress-2-8-not-ready-to-be-installed-with-php-5-3/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>PHP: How to get creation time of file with PHP on Linux machines</title>
		<link>http://iwebdevel.com/2009/09/01/php-how-to-get-creation-time-of-file-with-php-on-linux-machines-filemtime-fileatime-filectime/</link>
		<comments>http://iwebdevel.com/2009/09/01/php-how-to-get-creation-time-of-file-with-php-on-linux-machines-filemtime-fileatime-filectime/#comments</comments>
		<pubDate>Tue, 01 Sep 2009 17:19:37 +0000</pubDate>
		<dc:creator>Dragos</dc:creator>
				<category><![CDATA[Coding]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[file creation time]]></category>
		<category><![CDATA[fileatime]]></category>
		<category><![CDATA[filectime]]></category>
		<category><![CDATA[filemtime]]></category>

		<guid isPermaLink="false">http://iwebdevel.com/?p=207</guid>
		<description><![CDATA[Unfortunately it is not possible to get the creation time of a file on Linux machines. None of the functions fileatime,filemtime or filctime will return the file creation time. Note: Note also that in some Unix texts the ctime of a file is referred to as being the creation time of the file. This is [...]


Related posts:<ol><li><a href='http://iwebdevel.com/2009/06/08/wordpress-easily-reset-your-account-password-using-mysql-and-php/' rel='bookmark' title='Permanent Link: WordPress: Easily Reset Your Account Password Using MySQL and PHP'>WordPress: Easily Reset Your Account Password Using MySQL and PHP</a></li>
<li><a href='http://iwebdevel.com/2009/08/18/php-script-to-extract-ones-contacts-from-email-gmail-yahoohotmailaol-and-send-invites-openinviter-to-go/' rel='bookmark' title='Permanent Link: PHP: Script to extract one&#8217;s contacts from email (Gmail, Yahoo,Hotmail,AOL&#8230;) and send invites &#8211; OpenInviter to go!'>PHP: Script to extract one&#8217;s contacts from email (Gmail, Yahoo,Hotmail,AOL&#8230;) and send invites &#8211; OpenInviter to go!</a></li>
<li><a href='http://iwebdevel.com/2009/07/20/codinghow-to-fetch-user-profile-data-with-ssi-php-from-a-smf-forum-database/' rel='bookmark' title='Permanent Link: Coding:How to fetch user profile data with SSI.php from a SMF forum database'>Coding:How to fetch user profile data with SSI.php from a SMF forum database</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: left; margin-right: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fiwebdevel.com%2F2009%2F09%2F01%2Fphp-how-to-get-creation-time-of-file-with-php-on-linux-machines-filemtime-fileatime-filectime%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fiwebdevel.com%2F2009%2F09%2F01%2Fphp-how-to-get-creation-time-of-file-with-php-on-linux-machines-filemtime-fileatime-filectime%2F&amp;style=normal&amp;service=is.gd" height="61" width="50" /><br />
			</a>
		</div>
<div id="attachment_208" class="wp-caption alignleft" style="width: 161px"><a href="http://iwebdevel.com/wp-content/uploads/2009/09/3131799428_962aba66f1.jpg"><img class="size-full wp-image-208" title="PHP logo" src="http://iwebdevel.com/wp-content/uploads/2009/09/3131799428_962aba66f1.jpg" alt="PHP 5.3 5.4 6 logo" width="151" height="79" /></a><p class="wp-caption-text">PHP 5.3 5.4 6 logo</p></div>
<p>Unfortunately it is not possible to get the creation time of a file on Linux machines. None of the functions <strong>fileatime</strong>,<strong>filemtime</strong> or <strong>filctime</strong> will return the file<br />
creation time.</p>
<blockquote><p><strong>Note</strong>:          Note also that in some Unix texts the ctime of a file is referred to as     being the creation time of the file. This is wrong. There is no creation     time for Unix files in most Unix filesystems. <em>(from php.net)</em></p></blockquote>
<p>In order to solve this issue, you could try to store in a database/file the time when a file is created for later use.</p>


<div class="shr-bookmarks shr-bookmarks-expand">
<ul class="socials">
		<li class="shr-comfeed">
			<a href="http://iwebdevel.com/2009/09/01/php-how-to-get-creation-time-of-file-with-php-on-linux-machines-filemtime-fileatime-filectime/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://iwebdevel.com/2009/09/01/php-how-to-get-creation-time-of-file-with-php-on-linux-machines-filemtime-fileatime-filectime/&amp;title=PHP%3A+How+to+get+creation+time+of+file+with+PHP+on+Linux+machines" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://iwebdevel.com/2009/09/01/php-how-to-get-creation-time-of-file-with-php-on-linux-machines-filemtime-fileatime-filectime/&amp;title=PHP%3A+How+to+get+creation+time+of+file+with+PHP+on+Linux+machines" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-diigo">
			<a href="http://www.diigo.com/post?url=http://iwebdevel.com/2009/09/01/php-how-to-get-creation-time-of-file-with-php-on-linux-machines-filemtime-fileatime-filectime/&amp;title=PHP%3A+How+to+get+creation+time+of+file+with+PHP+on+Linux+machines&amp;desc=%0D%0A%0D%0AUnfortunately%20it%20is%20not%20possible%20to%20get%20the%20creation%20time%20of%20a%20file%20on%20Linux%20machines.%20None%20of%20the%20functions%20fileatime%2Cfilemtime%20or%20filctime%20will%20return%20the%20file%0D%0Acreation%20time.%0D%0ANote%3A%20%20%20%20%20%20%20%20%20%20Note%20also%20that%20in%20some%20Unix%20texts%20the%20ctime%20of%20a%20file%20is%20referred%20to%20as%20%20%20%20%20being%20the%20creation%20time%20of" rel="nofollow" class="external" title="Post this on Diigo">Post this on Diigo</a>
		</li>
		<li class="shr-gmail">
			<a href="https://mail.google.com/mail/?ui=2&amp;view=cm&amp;fs=1&amp;tf=1&amp;su=PHP%3A+How+to+get+creation+time+of+file+with+PHP+on+Linux+machines&amp;body=Link: http://iwebdevel.com/2009/09/01/php-how-to-get-creation-time-of-file-with-php-on-linux-machines-filemtime-fileatime-filectime/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A %0D%0A%0D%0AUnfortunately%20it%20is%20not%20possible%20to%20get%20the%20creation%20time%20of%20a%20file%20on%20Linux%20machines.%20None%20of%20the%20functions%20fileatime%2Cfilemtime%20or%20filctime%20will%20return%20the%20file%0D%0Acreation%20time.%0D%0ANote%3A%20%20%20%20%20%20%20%20%20%20Note%20also%20that%20in%20some%20Unix%20texts%20the%20ctime%20of%20a%20file%20is%20referred%20to%20as%20%20%20%20%20being%20the%20creation%20time%20of" rel="nofollow" class="external" title="Email this via Gmail">Email this via Gmail</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://iwebdevel.com/2009/09/01/php-how-to-get-creation-time-of-file-with-php-on-linux-machines-filemtime-fileatime-filectime/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-misterwong">
			<a href="http://www.mister-wong.com/addurl/?bm_url=http://iwebdevel.com/2009/09/01/php-how-to-get-creation-time-of-file-with-php-on-linux-machines-filemtime-fileatime-filectime/&amp;bm_description=PHP%3A+How+to+get+creation+time+of+file+with+PHP+on+Linux+machines&amp;plugin=sexybookmarks" rel="nofollow" class="external" title="Add this to Mister Wong">Add this to Mister Wong</a>
		</li>
		<li class="shr-mixx">
			<a href="http://www.mixx.com/submit?page_url=http://iwebdevel.com/2009/09/01/php-how-to-get-creation-time-of-file-with-php-on-linux-machines-filemtime-fileatime-filectime/&amp;title=PHP%3A+How+to+get+creation+time+of+file+with+PHP+on+Linux+machines" rel="nofollow" class="external" title="Share this on Mixx">Share this on Mixx</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://iwebdevel.com/2009/09/01/php-how-to-get-creation-time-of-file-with-php-on-linux-machines-filemtime-fileatime-filectime/&amp;title=PHP%3A+How+to+get+creation+time+of+file+with+PHP+on+Linux+machines" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://iwebdevel.com/2009/09/01/php-how-to-get-creation-time-of-file-with-php-on-linux-machines-filemtime-fileatime-filectime/&amp;title=PHP%3A+How+to+get+creation+time+of+file+with+PHP+on+Linux+machines" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://iwebdevel.com/2009/09/01/php-how-to-get-creation-time-of-file-with-php-on-linux-machines-filemtime-fileatime-filectime/" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=PHP%3A+How+to+get+creation+time+of+file+with+PHP+on+Linux+machines+-+http://iwebdevel.com/2009/09/01/php-how-to-get-creation-time-of-file-with-php-on-linux-machines-filemtime-fileatime-filectime/&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>



<p>Related posts:<ol><li><a href='http://iwebdevel.com/2009/06/08/wordpress-easily-reset-your-account-password-using-mysql-and-php/' rel='bookmark' title='Permanent Link: WordPress: Easily Reset Your Account Password Using MySQL and PHP'>WordPress: Easily Reset Your Account Password Using MySQL and PHP</a></li>
<li><a href='http://iwebdevel.com/2009/08/18/php-script-to-extract-ones-contacts-from-email-gmail-yahoohotmailaol-and-send-invites-openinviter-to-go/' rel='bookmark' title='Permanent Link: PHP: Script to extract one&#8217;s contacts from email (Gmail, Yahoo,Hotmail,AOL&#8230;) and send invites &#8211; OpenInviter to go!'>PHP: Script to extract one&#8217;s contacts from email (Gmail, Yahoo,Hotmail,AOL&#8230;) and send invites &#8211; OpenInviter to go!</a></li>
<li><a href='http://iwebdevel.com/2009/07/20/codinghow-to-fetch-user-profile-data-with-ssi-php-from-a-smf-forum-database/' rel='bookmark' title='Permanent Link: Coding:How to fetch user profile data with SSI.php from a SMF forum database'>Coding:How to fetch user profile data with SSI.php from a SMF forum database</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://iwebdevel.com/2009/09/01/php-how-to-get-creation-time-of-file-with-php-on-linux-machines-filemtime-fileatime-filectime/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PHP:ob_start() Display page at once, forget about cookie,headers sent too early errors</title>
		<link>http://iwebdevel.com/2009/08/21/phpob_start-display-page-at-once-forget-about-cookieheaders-sent-too-early-errors/</link>
		<comments>http://iwebdevel.com/2009/08/21/phpob_start-display-page-at-once-forget-about-cookieheaders-sent-too-early-errors/#comments</comments>
		<pubDate>Fri, 21 Aug 2009 20:04:55 +0000</pubDate>
		<dc:creator>Dragos</dc:creator>
				<category><![CDATA[Coding]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://iwebdevel.com/?p=201</guid>
		<description><![CDATA[If you want to display your web pages at once, not subsequently, and reduce the &#8220;headers already sent, cannot send cookie information&#8221; errors, add ob_start() at the start of your script. This function will turn output buffering on. While output buffering is active no output is sent from the script (other than headers), instead the [...]


Related posts:<ol><li><a href='http://iwebdevel.com/2009/10/03/php-how-to-download-a-webpage-aka-web-scrapping-with-php-fsockopen-file_get_contents-curl-function-download-web-page/' rel='bookmark' title='Permanent Link: PHP: How to download a webpage (aka web scrapping) with PHP'>PHP: How to download a webpage (aka web scrapping) with PHP</a></li>
<li><a href='http://iwebdevel.com/2009/09/04/wordpress-best-seo-itranslator-for-wordpress-get-free-traffic-from-fully-automated-plugin-script/' rel='bookmark' title='Permanent Link: WordPress: Best SEO iTranslator for WordPress, get free traffic from fully automated plugin script'>WordPress: Best SEO iTranslator for WordPress, get free traffic from fully automated plugin script</a></li>
<li><a href='http://iwebdevel.com/2009/07/20/codinghow-to-fetch-user-profile-data-with-ssi-php-from-a-smf-forum-database/' rel='bookmark' title='Permanent Link: Coding:How to fetch user profile data with SSI.php from a SMF forum database'>Coding:How to fetch user profile data with SSI.php from a SMF forum database</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: left; margin-right: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fiwebdevel.com%2F2009%2F08%2F21%2Fphpob_start-display-page-at-once-forget-about-cookieheaders-sent-too-early-errors%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fiwebdevel.com%2F2009%2F08%2F21%2Fphpob_start-display-page-at-once-forget-about-cookieheaders-sent-too-early-errors%2F&amp;style=normal&amp;service=is.gd" height="61" width="50" /><br />
			</a>
		</div>
<p>If you want to display your web pages at once, not subsequently, and reduce the &#8220;headers already sent, cannot send cookie information&#8221; errors, add <strong>ob_start()</strong> at the start of your script.</p>
<blockquote><p>This function will turn output buffering on. While output buffering is    active no output is sent from the script (other than headers), instead the    output is stored in an internal buffer. (php.net)</p></blockquote>
<p>You can also manipulate the contents of the output by using the function <strong>ob_get_contents()</strong></p>


<div class="shr-bookmarks shr-bookmarks-expand">
<ul class="socials">
		<li class="shr-comfeed">
			<a href="http://iwebdevel.com/2009/08/21/phpob_start-display-page-at-once-forget-about-cookieheaders-sent-too-early-errors/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://iwebdevel.com/2009/08/21/phpob_start-display-page-at-once-forget-about-cookieheaders-sent-too-early-errors/&amp;title=PHP%3Aob_start%28%29+Display+page+at+once%2C+forget+about+cookie%2Cheaders+sent+too+early+errors" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://iwebdevel.com/2009/08/21/phpob_start-display-page-at-once-forget-about-cookieheaders-sent-too-early-errors/&amp;title=PHP%3Aob_start%28%29+Display+page+at+once%2C+forget+about+cookie%2Cheaders+sent+too+early+errors" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-diigo">
			<a href="http://www.diigo.com/post?url=http://iwebdevel.com/2009/08/21/phpob_start-display-page-at-once-forget-about-cookieheaders-sent-too-early-errors/&amp;title=PHP%3Aob_start%28%29+Display+page+at+once%2C+forget+about+cookie%2Cheaders+sent+too+early+errors&amp;desc=If%20you%20want%20to%20display%20your%20web%20pages%20at%20once%2C%20not%20subsequently%2C%20and%20reduce%20the%20%22headers%20already%20sent%2C%20cannot%20send%20cookie%20information%22%20errors%2C%20add%20ob_start%28%29%20at%20the%20start%20of%20your%20script.%0D%0AThis%20function%20will%20turn%20output%20buffering%20on.%20While%20output%20buffering%20is%20%20%20%20active%20no%20output%20is%20sent%20from%20the%20scri" rel="nofollow" class="external" title="Post this on Diigo">Post this on Diigo</a>
		</li>
		<li class="shr-gmail">
			<a href="https://mail.google.com/mail/?ui=2&amp;view=cm&amp;fs=1&amp;tf=1&amp;su=PHP%3Aob_start%28%29+Display+page+at+once%2C+forget+about+cookie%2Cheaders+sent+too+early+errors&amp;body=Link: http://iwebdevel.com/2009/08/21/phpob_start-display-page-at-once-forget-about-cookieheaders-sent-too-early-errors/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A If%20you%20want%20to%20display%20your%20web%20pages%20at%20once%2C%20not%20subsequently%2C%20and%20reduce%20the%20%22headers%20already%20sent%2C%20cannot%20send%20cookie%20information%22%20errors%2C%20add%20ob_start%28%29%20at%20the%20start%20of%20your%20script.%0D%0AThis%20function%20will%20turn%20output%20buffering%20on.%20While%20output%20buffering%20is%20%20%20%20active%20no%20output%20is%20sent%20from%20the%20scri" rel="nofollow" class="external" title="Email this via Gmail">Email this via Gmail</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://iwebdevel.com/2009/08/21/phpob_start-display-page-at-once-forget-about-cookieheaders-sent-too-early-errors/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-misterwong">
			<a href="http://www.mister-wong.com/addurl/?bm_url=http://iwebdevel.com/2009/08/21/phpob_start-display-page-at-once-forget-about-cookieheaders-sent-too-early-errors/&amp;bm_description=PHP%3Aob_start%28%29+Display+page+at+once%2C+forget+about+cookie%2Cheaders+sent+too+early+errors&amp;plugin=sexybookmarks" rel="nofollow" class="external" title="Add this to Mister Wong">Add this to Mister Wong</a>
		</li>
		<li class="shr-mixx">
			<a href="http://www.mixx.com/submit?page_url=http://iwebdevel.com/2009/08/21/phpob_start-display-page-at-once-forget-about-cookieheaders-sent-too-early-errors/&amp;title=PHP%3Aob_start%28%29+Display+page+at+once%2C+forget+about+cookie%2Cheaders+sent+too+early+errors" rel="nofollow" class="external" title="Share this on Mixx">Share this on Mixx</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://iwebdevel.com/2009/08/21/phpob_start-display-page-at-once-forget-about-cookieheaders-sent-too-early-errors/&amp;title=PHP%3Aob_start%28%29+Display+page+at+once%2C+forget+about+cookie%2Cheaders+sent+too+early+errors" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://iwebdevel.com/2009/08/21/phpob_start-display-page-at-once-forget-about-cookieheaders-sent-too-early-errors/&amp;title=PHP%3Aob_start%28%29+Display+page+at+once%2C+forget+about+cookie%2Cheaders+sent+too+early+errors" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://iwebdevel.com/2009/08/21/phpob_start-display-page-at-once-forget-about-cookieheaders-sent-too-early-errors/" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=PHP%3Aob_start%28%29+Display+page+at+once%2C+forget+about+cookie%2Cheaders+sent+too+early+%5B..%5D+-+http://iwebdevel.com/2009/08/21/phpob_start-display-page-at-once-forget-about-cookieheaders-sent-too-early-errors/&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>



<p>Related posts:<ol><li><a href='http://iwebdevel.com/2009/10/03/php-how-to-download-a-webpage-aka-web-scrapping-with-php-fsockopen-file_get_contents-curl-function-download-web-page/' rel='bookmark' title='Permanent Link: PHP: How to download a webpage (aka web scrapping) with PHP'>PHP: How to download a webpage (aka web scrapping) with PHP</a></li>
<li><a href='http://iwebdevel.com/2009/09/04/wordpress-best-seo-itranslator-for-wordpress-get-free-traffic-from-fully-automated-plugin-script/' rel='bookmark' title='Permanent Link: WordPress: Best SEO iTranslator for WordPress, get free traffic from fully automated plugin script'>WordPress: Best SEO iTranslator for WordPress, get free traffic from fully automated plugin script</a></li>
<li><a href='http://iwebdevel.com/2009/07/20/codinghow-to-fetch-user-profile-data-with-ssi-php-from-a-smf-forum-database/' rel='bookmark' title='Permanent Link: Coding:How to fetch user profile data with SSI.php from a SMF forum database'>Coding:How to fetch user profile data with SSI.php from a SMF forum database</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://iwebdevel.com/2009/08/21/phpob_start-display-page-at-once-forget-about-cookieheaders-sent-too-early-errors/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PHP: Script to extract one&#8217;s contacts from email (Gmail, Yahoo,Hotmail,AOL&#8230;) and send invites &#8211; OpenInviter to go!</title>
		<link>http://iwebdevel.com/2009/08/18/php-script-to-extract-ones-contacts-from-email-gmail-yahoohotmailaol-and-send-invites-openinviter-to-go/</link>
		<comments>http://iwebdevel.com/2009/08/18/php-script-to-extract-ones-contacts-from-email-gmail-yahoohotmailaol-and-send-invites-openinviter-to-go/#comments</comments>
		<pubDate>Tue, 18 Aug 2009 07:17:36 +0000</pubDate>
		<dc:creator>Dragos</dc:creator>
				<category><![CDATA[Coding]]></category>
		<category><![CDATA[Internet Life]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Web Buzzz]]></category>
		<category><![CDATA[email extract]]></category>
		<category><![CDATA[openinviter]]></category>
		<category><![CDATA[send invite]]></category>

		<guid isPermaLink="false">http://iwebdevel.com/?p=188</guid>
		<description><![CDATA[You&#8217;ll find many scripts to extract email contacts, but many of these are either commercial or just given as apis. For the last case, it&#8217;s good to extract contacts from an email using an external server, because that&#8217;ll help reduce the server load, but what if the website providing that service goes down? Not good. [...]


Related posts:<ol><li><a href='http://iwebdevel.com/2009/09/05/web-news-social-website-toolbars-that-help-your-visitors-better-interact-with-your-online-product/' rel='bookmark' title='Permanent Link: Web news: Social website toolbars that help your visitors better interact with your online product'>Web news: Social website toolbars that help your visitors better interact with your online product</a></li>
<li><a href='http://iwebdevel.com/2009/09/04/wordpress-best-seo-itranslator-for-wordpress-get-free-traffic-from-fully-automated-plugin-script/' rel='bookmark' title='Permanent Link: WordPress: Best SEO iTranslator for WordPress, get free traffic from fully automated plugin script'>WordPress: Best SEO iTranslator for WordPress, get free traffic from fully automated plugin script</a></li>
<li><a href='http://iwebdevel.com/2009/06/13/javascript-how-to-validate-email-address-with-javascript/' rel='bookmark' title='Permanent Link: Javascript: How to validate email address with JavaScript?'>Javascript: How to validate email address with JavaScript?</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: left; margin-right: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fiwebdevel.com%2F2009%2F08%2F18%2Fphp-script-to-extract-ones-contacts-from-email-gmail-yahoohotmailaol-and-send-invites-openinviter-to-go%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fiwebdevel.com%2F2009%2F08%2F18%2Fphp-script-to-extract-ones-contacts-from-email-gmail-yahoohotmailaol-and-send-invites-openinviter-to-go%2F&amp;style=normal&amp;service=is.gd" height="61" width="50" /><br />
			</a>
		</div>
<div id="attachment_189" class="wp-caption alignleft" style="width: 160px"><a href="http://iwebdevel.com/wp-content/uploads/2009/08/logo.png"><img class="size-thumbnail wp-image-189" title="OpenInviter -email extractor php script-logo" src="http://iwebdevel.com/wp-content/uploads/2009/08/logo-150x150.png" alt="OpenInviter -email extractor php script-logo" width="150" height="150" /></a><p class="wp-caption-text">OpenInviter -email extractor php script-logo</p></div>
<p>You&#8217;ll find many scripts to extract email contacts, but many of these are either commercial or just given as apis. For the last case, it&#8217;s good to extract contacts from an email using an external server, because that&#8217;ll help reduce the server load, but what if the website providing that service goes down? Not good.</p>
<p>So here&#8217;s a better solution: OpenInviter<sup>TM.</sup></p>
<p>OpenInviter is a precious tool for those who want to get viral traffic to their websites. This technique has been widely used by most social networks, such as FaceBook, Twitter, Hi5&#8230; The best part about OpenInviter is that it supports a lot of email providers and social networks. Yup! You&#8217;ve heard it well, you can even send invites to friends from social networks as private/direct messages; it works on your own server, meaning that you&#8217;ll have a functional invite system even when all other websites are down.</p>
<p>Go get it quickly while it&#8217;s warm and free: <a title="OpenInviter offsite" href="http://openinviter.com/" target="_blank">http://openinviter.com/</a></p>


<div class="shr-bookmarks shr-bookmarks-expand">
<ul class="socials">
		<li class="shr-comfeed">
			<a href="http://iwebdevel.com/2009/08/18/php-script-to-extract-ones-contacts-from-email-gmail-yahoohotmailaol-and-send-invites-openinviter-to-go/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://iwebdevel.com/2009/08/18/php-script-to-extract-ones-contacts-from-email-gmail-yahoohotmailaol-and-send-invites-openinviter-to-go/&amp;title=PHP%3A+Script+to+extract+one%27s+contacts+from+email+%28Gmail%2C+Yahoo%2CHotmail%2CAOL...%29+and+send+invites+-+OpenInviter+to+go%21" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://iwebdevel.com/2009/08/18/php-script-to-extract-ones-contacts-from-email-gmail-yahoohotmailaol-and-send-invites-openinviter-to-go/&amp;title=PHP%3A+Script+to+extract+one%27s+contacts+from+email+%28Gmail%2C+Yahoo%2CHotmail%2CAOL...%29+and+send+invites+-+OpenInviter+to+go%21" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-diigo">
			<a href="http://www.diigo.com/post?url=http://iwebdevel.com/2009/08/18/php-script-to-extract-ones-contacts-from-email-gmail-yahoohotmailaol-and-send-invites-openinviter-to-go/&amp;title=PHP%3A+Script+to+extract+one%27s+contacts+from+email+%28Gmail%2C+Yahoo%2CHotmail%2CAOL...%29+and+send+invites+-+OpenInviter+to+go%21&amp;desc=%0D%0A%0D%0AYou%27ll%20find%20many%20scripts%20to%20extract%20email%20contacts%2C%20but%20many%20of%20these%20are%20either%20commercial%20or%20just%20given%20as%20apis.%20For%20the%20last%20case%2C%20it%27s%20good%20to%20extract%20contacts%20from%20an%20email%20using%20an%20external%20server%2C%20because%20that%27ll%20help%20reduce%20the%20server%20load%2C%20but%20what%20if%20the%20website%20providing%20that%20service%20" rel="nofollow" class="external" title="Post this on Diigo">Post this on Diigo</a>
		</li>
		<li class="shr-gmail">
			<a href="https://mail.google.com/mail/?ui=2&amp;view=cm&amp;fs=1&amp;tf=1&amp;su=PHP%3A+Script+to+extract+one%27s+contacts+from+email+%28Gmail%2C+Yahoo%2CHotmail%2CAOL...%29+and+send+invites+-+OpenInviter+to+go%21&amp;body=Link: http://iwebdevel.com/2009/08/18/php-script-to-extract-ones-contacts-from-email-gmail-yahoohotmailaol-and-send-invites-openinviter-to-go/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A %0D%0A%0D%0AYou%27ll%20find%20many%20scripts%20to%20extract%20email%20contacts%2C%20but%20many%20of%20these%20are%20either%20commercial%20or%20just%20given%20as%20apis.%20For%20the%20last%20case%2C%20it%27s%20good%20to%20extract%20contacts%20from%20an%20email%20using%20an%20external%20server%2C%20because%20that%27ll%20help%20reduce%20the%20server%20load%2C%20but%20what%20if%20the%20website%20providing%20that%20service%20" rel="nofollow" class="external" title="Email this via Gmail">Email this via Gmail</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://iwebdevel.com/2009/08/18/php-script-to-extract-ones-contacts-from-email-gmail-yahoohotmailaol-and-send-invites-openinviter-to-go/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-misterwong">
			<a href="http://www.mister-wong.com/addurl/?bm_url=http://iwebdevel.com/2009/08/18/php-script-to-extract-ones-contacts-from-email-gmail-yahoohotmailaol-and-send-invites-openinviter-to-go/&amp;bm_description=PHP%3A+Script+to+extract+one%27s+contacts+from+email+%28Gmail%2C+Yahoo%2CHotmail%2CAOL...%29+and+send+invites+-+OpenInviter+to+go%21&amp;plugin=sexybookmarks" rel="nofollow" class="external" title="Add this to Mister Wong">Add this to Mister Wong</a>
		</li>
		<li class="shr-mixx">
			<a href="http://www.mixx.com/submit?page_url=http://iwebdevel.com/2009/08/18/php-script-to-extract-ones-contacts-from-email-gmail-yahoohotmailaol-and-send-invites-openinviter-to-go/&amp;title=PHP%3A+Script+to+extract+one%27s+contacts+from+email+%28Gmail%2C+Yahoo%2CHotmail%2CAOL...%29+and+send+invites+-+OpenInviter+to+go%21" rel="nofollow" class="external" title="Share this on Mixx">Share this on Mixx</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://iwebdevel.com/2009/08/18/php-script-to-extract-ones-contacts-from-email-gmail-yahoohotmailaol-and-send-invites-openinviter-to-go/&amp;title=PHP%3A+Script+to+extract+one%27s+contacts+from+email+%28Gmail%2C+Yahoo%2CHotmail%2CAOL...%29+and+send+invites+-+OpenInviter+to+go%21" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://iwebdevel.com/2009/08/18/php-script-to-extract-ones-contacts-from-email-gmail-yahoohotmailaol-and-send-invites-openinviter-to-go/&amp;title=PHP%3A+Script+to+extract+one%27s+contacts+from+email+%28Gmail%2C+Yahoo%2CHotmail%2CAOL...%29+and+send+invites+-+OpenInviter+to+go%21" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://iwebdevel.com/2009/08/18/php-script-to-extract-ones-contacts-from-email-gmail-yahoohotmailaol-and-send-invites-openinviter-to-go/" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=PHP%3A+Script+to+extract+one%27s+contacts+from+email+%28Gmail%2C+Yahoo%2CHotmail%2CAOL...%29+a%5B..%5D+-+http://iwebdevel.com/2009/08/18/php-script-to-extract-ones-contacts-from-email-gmail-yahoohotmailaol-and-send-invites-openinviter-to-go/&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>



<p>Related posts:<ol><li><a href='http://iwebdevel.com/2009/09/05/web-news-social-website-toolbars-that-help-your-visitors-better-interact-with-your-online-product/' rel='bookmark' title='Permanent Link: Web news: Social website toolbars that help your visitors better interact with your online product'>Web news: Social website toolbars that help your visitors better interact with your online product</a></li>
<li><a href='http://iwebdevel.com/2009/09/04/wordpress-best-seo-itranslator-for-wordpress-get-free-traffic-from-fully-automated-plugin-script/' rel='bookmark' title='Permanent Link: WordPress: Best SEO iTranslator for WordPress, get free traffic from fully automated plugin script'>WordPress: Best SEO iTranslator for WordPress, get free traffic from fully automated plugin script</a></li>
<li><a href='http://iwebdevel.com/2009/06/13/javascript-how-to-validate-email-address-with-javascript/' rel='bookmark' title='Permanent Link: Javascript: How to validate email address with JavaScript?'>Javascript: How to validate email address with JavaScript?</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://iwebdevel.com/2009/08/18/php-script-to-extract-ones-contacts-from-email-gmail-yahoohotmailaol-and-send-invites-openinviter-to-go/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>JavaScript: Send function as a parameter to another function (callbacks)</title>
		<link>http://iwebdevel.com/2009/07/29/javascript-send-function-as-a-parameter-to-another-function-callbacks/</link>
		<comments>http://iwebdevel.com/2009/07/29/javascript-send-function-as-a-parameter-to-another-function-callbacks/#comments</comments>
		<pubDate>Wed, 29 Jul 2009 13:16:20 +0000</pubDate>
		<dc:creator>Dragos</dc:creator>
				<category><![CDATA[Coding]]></category>
		<category><![CDATA[JavaScript & Ajax]]></category>
		<category><![CDATA[callbacks]]></category>
		<category><![CDATA[function as parameters]]></category>

		<guid isPermaLink="false">http://iwebdevel.com/?p=146</guid>
		<description><![CDATA[I&#8217;m sure you&#8217;ve seen a lot of code where functions are send as parameters, usually working as function callbacks e.g: setTimeout(function () { alert('test'); },1000); But how does the function setTimeout execute the passed function as a parameter? The answer is simple, but I need to provide you an example to understand it Let&#8217;s create [...]


Related posts:<ol><li><a href='http://iwebdevel.com/2009/06/13/javascript-how-to-validate-email-address-with-javascript/' rel='bookmark' title='Permanent Link: Javascript: How to validate email address with JavaScript?'>Javascript: How to validate email address with JavaScript?</a></li>
<li><a href='http://iwebdevel.com/2009/06/20/javascript-how-to-get-the-index-position-within-a-group-of-an-object-with-jquery/' rel='bookmark' title='Permanent Link: JavaScript: How to get the index (position within a group) of an object with jQuery?'>JavaScript: How to get the index (position within a group) of an object with jQuery?</a></li>
<li><a href='http://iwebdevel.com/2009/06/19/javascript-what-if-jquery-animation-doesnt-firestart/' rel='bookmark' title='Permanent Link: JavaScript: What if jQuery animation doesn&#8217;t fire/start?'>JavaScript: What if jQuery animation doesn&#8217;t fire/start?</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: left; margin-right: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fiwebdevel.com%2F2009%2F07%2F29%2Fjavascript-send-function-as-a-parameter-to-another-function-callbacks%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fiwebdevel.com%2F2009%2F07%2F29%2Fjavascript-send-function-as-a-parameter-to-another-function-callbacks%2F&amp;style=normal&amp;service=is.gd" height="61" width="50" /><br />
			</a>
		</div>
<p>I&#8217;m sure you&#8217;ve seen a lot of code where functions are send as parameters, usually working as function callbacks e.g:</p>
<pre name="code" class="javascript">
setTimeout(function () { alert('test'); },1000);
</pre>
<p>But how does the function setTimeout execute the passed function as a parameter? The answer is simple, but I need to provide you an example to understand it <img src='http://iwebdevel.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p>Let&#8217;s create a simple function, accepting two parameters: first a boolean value, the second &#8211; a function. Our function will analyze the boolean parameter and in case the value is <strong>true</strong>, the function passed as a parameter will be executed.</p>
<pre name="code" class="javascript">
function simpleFunc(bool,func) {
    if(bool) func();
}
</pre>
<p>As you notice, we add parentheses after the name of the second parameter, because we&#8217;ll treat it as a function. And that&#8217;s te whole secret.</p>
<p>Now that is how we will use the <strong>simpleFunc</strong> function:</p>
<pre name="code" class="javascript">
simpleFunc(false,function() { alert('Yupee!'); }; // this won't alert anything, because the boolean parameter is false
//example two
simpleFunc(true,function() { alert('Yupee!'); }); // this will alert Yupee! <img src='http://iwebdevel.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />
</pre>
<p>Wish you luck!</p>


<div class="shr-bookmarks shr-bookmarks-expand">
<ul class="socials">
		<li class="shr-comfeed">
			<a href="http://iwebdevel.com/2009/07/29/javascript-send-function-as-a-parameter-to-another-function-callbacks/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://iwebdevel.com/2009/07/29/javascript-send-function-as-a-parameter-to-another-function-callbacks/&amp;title=JavaScript%3A+Send+function+as+a+parameter+to+another+function+%28callbacks%29" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://iwebdevel.com/2009/07/29/javascript-send-function-as-a-parameter-to-another-function-callbacks/&amp;title=JavaScript%3A+Send+function+as+a+parameter+to+another+function+%28callbacks%29" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-diigo">
			<a href="http://www.diigo.com/post?url=http://iwebdevel.com/2009/07/29/javascript-send-function-as-a-parameter-to-another-function-callbacks/&amp;title=JavaScript%3A+Send+function+as+a+parameter+to+another+function+%28callbacks%29&amp;desc=I%27m%20sure%20you%27ve%20seen%20a%20lot%20of%20code%20where%20functions%20are%20send%20as%20parameters%2C%20usually%20working%20as%20function%20callbacks%20e.g%3A%0D%0A%0D%0A%0D%0AsetTimeout%28function%20%28%29%20%7B%20alert%28%27test%27%29%3B%20%7D%2C1000%29%3B%0D%0A%0D%0A%0D%0ABut%20how%20does%20the%20function%20setTimeout%20execute%20the%20passed%20function%20as%20a%20parameter%3F%20The%20answer%20is%20simple%2C%20but%20I%20need%20to%20provid" rel="nofollow" class="external" title="Post this on Diigo">Post this on Diigo</a>
		</li>
		<li class="shr-gmail">
			<a href="https://mail.google.com/mail/?ui=2&amp;view=cm&amp;fs=1&amp;tf=1&amp;su=JavaScript%3A+Send+function+as+a+parameter+to+another+function+%28callbacks%29&amp;body=Link: http://iwebdevel.com/2009/07/29/javascript-send-function-as-a-parameter-to-another-function-callbacks/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A I%27m%20sure%20you%27ve%20seen%20a%20lot%20of%20code%20where%20functions%20are%20send%20as%20parameters%2C%20usually%20working%20as%20function%20callbacks%20e.g%3A%0D%0A%0D%0A%0D%0AsetTimeout%28function%20%28%29%20%7B%20alert%28%27test%27%29%3B%20%7D%2C1000%29%3B%0D%0A%0D%0A%0D%0ABut%20how%20does%20the%20function%20setTimeout%20execute%20the%20passed%20function%20as%20a%20parameter%3F%20The%20answer%20is%20simple%2C%20but%20I%20need%20to%20provid" rel="nofollow" class="external" title="Email this via Gmail">Email this via Gmail</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://iwebdevel.com/2009/07/29/javascript-send-function-as-a-parameter-to-another-function-callbacks/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-misterwong">
			<a href="http://www.mister-wong.com/addurl/?bm_url=http://iwebdevel.com/2009/07/29/javascript-send-function-as-a-parameter-to-another-function-callbacks/&amp;bm_description=JavaScript%3A+Send+function+as+a+parameter+to+another+function+%28callbacks%29&amp;plugin=sexybookmarks" rel="nofollow" class="external" title="Add this to Mister Wong">Add this to Mister Wong</a>
		</li>
		<li class="shr-mixx">
			<a href="http://www.mixx.com/submit?page_url=http://iwebdevel.com/2009/07/29/javascript-send-function-as-a-parameter-to-another-function-callbacks/&amp;title=JavaScript%3A+Send+function+as+a+parameter+to+another+function+%28callbacks%29" rel="nofollow" class="external" title="Share this on Mixx">Share this on Mixx</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://iwebdevel.com/2009/07/29/javascript-send-function-as-a-parameter-to-another-function-callbacks/&amp;title=JavaScript%3A+Send+function+as+a+parameter+to+another+function+%28callbacks%29" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://iwebdevel.com/2009/07/29/javascript-send-function-as-a-parameter-to-another-function-callbacks/&amp;title=JavaScript%3A+Send+function+as+a+parameter+to+another+function+%28callbacks%29" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://iwebdevel.com/2009/07/29/javascript-send-function-as-a-parameter-to-another-function-callbacks/" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=JavaScript%3A+Send+function+as+a+parameter+to+another+function+%28callbacks%29+-+http://iwebdevel.com/2009/07/29/javascript-send-function-as-a-parameter-to-another-function-callbacks/&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>



<p>Related posts:<ol><li><a href='http://iwebdevel.com/2009/06/13/javascript-how-to-validate-email-address-with-javascript/' rel='bookmark' title='Permanent Link: Javascript: How to validate email address with JavaScript?'>Javascript: How to validate email address with JavaScript?</a></li>
<li><a href='http://iwebdevel.com/2009/06/20/javascript-how-to-get-the-index-position-within-a-group-of-an-object-with-jquery/' rel='bookmark' title='Permanent Link: JavaScript: How to get the index (position within a group) of an object with jQuery?'>JavaScript: How to get the index (position within a group) of an object with jQuery?</a></li>
<li><a href='http://iwebdevel.com/2009/06/19/javascript-what-if-jquery-animation-doesnt-firestart/' rel='bookmark' title='Permanent Link: JavaScript: What if jQuery animation doesn&#8217;t fire/start?'>JavaScript: What if jQuery animation doesn&#8217;t fire/start?</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://iwebdevel.com/2009/07/29/javascript-send-function-as-a-parameter-to-another-function-callbacks/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>JavaScript: GIFless animation. Animate images,logos with jQuery</title>
		<link>http://iwebdevel.com/2009/07/23/javascript-gifless-animation-animate-imageslogos-with-jquery/</link>
		<comments>http://iwebdevel.com/2009/07/23/javascript-gifless-animation-animate-imageslogos-with-jquery/#comments</comments>
		<pubDate>Thu, 23 Jul 2009 18:29:29 +0000</pubDate>
		<dc:creator>Dragos</dc:creator>
				<category><![CDATA[Coding]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[JavaScript & Ajax]]></category>
		<category><![CDATA[animation]]></category>
		<category><![CDATA[jquery animation]]></category>
		<category><![CDATA[script animation]]></category>

		<guid isPermaLink="false">http://iwebdevel.com/?p=135</guid>
		<description><![CDATA[After playing some time with position relative and absolute, I&#8217;ve noticed one a great aspect of the png image format (probably gif images are also good, but since we are trying to create a GIFless animation, I won&#8217;t use any gif images in this tutorial). So here&#8217;s a a PNG (transparent text), with the name [...]


Related posts:<ol><li><a href='http://iwebdevel.com/2009/06/19/javascript-what-if-jquery-animation-doesnt-firestart/' rel='bookmark' title='Permanent Link: JavaScript: What if jQuery animation doesn&#8217;t fire/start?'>JavaScript: What if jQuery animation doesn&#8217;t fire/start?</a></li>
<li><a href='http://iwebdevel.com/2009/06/20/javascript-how-to-get-the-index-position-within-a-group-of-an-object-with-jquery/' rel='bookmark' title='Permanent Link: JavaScript: How to get the index (position within a group) of an object with jQuery?'>JavaScript: How to get the index (position within a group) of an object with jQuery?</a></li>
<li><a href='http://iwebdevel.com/2009/06/13/javascript-how-to-validate-email-address-with-javascript/' rel='bookmark' title='Permanent Link: Javascript: How to validate email address with JavaScript?'>Javascript: How to validate email address with JavaScript?</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: left; margin-right: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fiwebdevel.com%2F2009%2F07%2F23%2Fjavascript-gifless-animation-animate-imageslogos-with-jquery%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fiwebdevel.com%2F2009%2F07%2F23%2Fjavascript-gifless-animation-animate-imageslogos-with-jquery%2F&amp;style=normal&amp;service=is.gd" height="61" width="50" /><br />
			</a>
		</div>
<p>After playing some time with position relative and absolute, I&#8217;ve noticed one a great aspect of the png image format (probably gif images are also good, but since we are trying to create a GIFless animation, I won&#8217;t use any gif images in this tutorial).</p>
<p>So here&#8217;s a a PNG (transparent text), with the name of this website:</p>
<div id="attachment_137" class="wp-caption aligncenter" style="width: 310px"><a href="http://iwebdevel.com/wp-content/uploads/2009/07/transpLogo.png"><img class="size-medium wp-image-137" title="Transparent Logo" src="http://iwebdevel.com/wp-content/uploads/2009/07/transpLogo-300x225.png" alt="Transparent Logo" width="300" height="225" /></a><p class="wp-caption-text">Transparent Logo</p></div>
<p>The trick of animating images, without the need of using the GIF image format features, are as follow:</p>
<p>We have an image with transparent text written on it. To animate the transparent text, we need to place a background image below the actual image and move this background image, in order to create a so called &#8220;animation&#8221;. To be more precise, the image we want to be animated should have a higher z-index than the background image below it (it&#8217;s like working with layers in Photoshop). In order to animate the background image we need some javascript work to be done. Of course, as a big fan of jQuery, I&#8217;ve used jQuery to do all the animation stuff.</p>
<p>Here&#8217;s the script I&#8217;ve come up with:</p>
<pre name="code" class="javascript">(function($){
            $.fn.enliven = function(options) {
                var defaults = {
                    bgImage: '',
                    duration:3000
                };
                var options = $.extend(defaults, options);
                var imH=this.attr("height"),
                imW=this.attr("width");
                this.wrap('

');
                this.css("position","absolute");
                $('#'+this.attr("className")+'Cont').append('

');
                var
                maxLeft=($('.lbg'+this.attr("className")).attr('clientWidth')-this.attr('width'))/2,
                maxTop=($('.lbg'+this.attr("className")).attr('clientHeight')-this.attr('height'))/2;
                function getrand() {
                    var nr=Math.floor(Math.random()*2);
                    return nr==0?-1:1;
                }
                function randimate(obj) {
                    var ph=Math.floor(imH*20/100),pw=Math.floor(imW*20/100);
                    newLeft=$(".lbg"+obj.attr("className")).attr("offsetLeft")+Math.floor(Math.random()*pw)*getrand();
                    newTop=$(".lbg"+obj.attr("className")).attr("offsetTop")+Math.floor(Math.random()*ph)*getrand();
                    if(newLeft&gt;0) newLeft=0;
                    else if(newLeft&lt;-maxLeft)                         newLeft=-maxLeft+1;                     if(newTop&gt;0) newTop=0;
                    else if(newTop&lt;-maxTop)
                        newTop=-maxTop+1;
                    $('.lbg'+obj.attr("className")).animate({left:newLeft+"px",top:newTop+"px"},defaults.duration,"linear",function(){ randimate(obj); });
                }
                return this.each(function(){
                    randimate($(this));
                });
            };
        })(jQuery);</pre>
<p>The code above works as a plugin of jQuery, so it should be included in the page, after the inclusion of jQuery. In order to animate an image, you should use this code:</p>
<pre name="code" class="javascript">$('image_selector').enliven({bgImage:"./path_to_background_image.png",duration:1000}); //duration is the time of one time background animation</pre>
<p>Here&#8217;s a crazy example 1: <a href="http://iwebdevel.com/wp-content/uploads/2009/07/logo.php" target="_blank">http://iwebdevel.com/wp-content/uploads/2009/07/logo.php</a><br />
Here&#8217;s another non-crazy example 2: <a href="http://iwebdevel.com/wp-content/uploads/2009/07/logo2.php" target="_blank">http://iwebdevel.com/wp-content/uploads/2009/07/logo2.php</a></p>
<p>If you like the idea and want more features, drop me a line in a comment and I&#8217;ll try to improve the code and add more features <img src='http://iwebdevel.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>


<div class="shr-bookmarks shr-bookmarks-expand">
<ul class="socials">
		<li class="shr-comfeed">
			<a href="http://iwebdevel.com/2009/07/23/javascript-gifless-animation-animate-imageslogos-with-jquery/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://iwebdevel.com/2009/07/23/javascript-gifless-animation-animate-imageslogos-with-jquery/&amp;title=JavaScript%3A+GIFless+animation.+Animate+images%2Clogos+with+jQuery" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://iwebdevel.com/2009/07/23/javascript-gifless-animation-animate-imageslogos-with-jquery/&amp;title=JavaScript%3A+GIFless+animation.+Animate+images%2Clogos+with+jQuery" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-diigo">
			<a href="http://www.diigo.com/post?url=http://iwebdevel.com/2009/07/23/javascript-gifless-animation-animate-imageslogos-with-jquery/&amp;title=JavaScript%3A+GIFless+animation.+Animate+images%2Clogos+with+jQuery&amp;desc=After%20playing%20some%20time%20with%20position%20relative%20and%20absolute%2C%20I%27ve%20noticed%20one%20a%20great%20aspect%20of%20the%20png%20image%20format%20%28probably%20gif%20images%20are%20also%20good%2C%20but%20since%20we%20are%20trying%20to%20create%20a%20GIFless%20animation%2C%20I%20won%27t%20use%20any%20gif%20images%20in%20this%20tutorial%29.%0D%0A%0D%0ASo%20here%27s%20a%20a%20PNG%20%28transparent%20text%29%2C%20with%20" rel="nofollow" class="external" title="Post this on Diigo">Post this on Diigo</a>
		</li>
		<li class="shr-gmail">
			<a href="https://mail.google.com/mail/?ui=2&amp;view=cm&amp;fs=1&amp;tf=1&amp;su=JavaScript%3A+GIFless+animation.+Animate+images%2Clogos+with+jQuery&amp;body=Link: http://iwebdevel.com/2009/07/23/javascript-gifless-animation-animate-imageslogos-with-jquery/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A After%20playing%20some%20time%20with%20position%20relative%20and%20absolute%2C%20I%27ve%20noticed%20one%20a%20great%20aspect%20of%20the%20png%20image%20format%20%28probably%20gif%20images%20are%20also%20good%2C%20but%20since%20we%20are%20trying%20to%20create%20a%20GIFless%20animation%2C%20I%20won%27t%20use%20any%20gif%20images%20in%20this%20tutorial%29.%0D%0A%0D%0ASo%20here%27s%20a%20a%20PNG%20%28transparent%20text%29%2C%20with%20" rel="nofollow" class="external" title="Email this via Gmail">Email this via Gmail</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://iwebdevel.com/2009/07/23/javascript-gifless-animation-animate-imageslogos-with-jquery/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-misterwong">
			<a href="http://www.mister-wong.com/addurl/?bm_url=http://iwebdevel.com/2009/07/23/javascript-gifless-animation-animate-imageslogos-with-jquery/&amp;bm_description=JavaScript%3A+GIFless+animation.+Animate+images%2Clogos+with+jQuery&amp;plugin=sexybookmarks" rel="nofollow" class="external" title="Add this to Mister Wong">Add this to Mister Wong</a>
		</li>
		<li class="shr-mixx">
			<a href="http://www.mixx.com/submit?page_url=http://iwebdevel.com/2009/07/23/javascript-gifless-animation-animate-imageslogos-with-jquery/&amp;title=JavaScript%3A+GIFless+animation.+Animate+images%2Clogos+with+jQuery" rel="nofollow" class="external" title="Share this on Mixx">Share this on Mixx</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://iwebdevel.com/2009/07/23/javascript-gifless-animation-animate-imageslogos-with-jquery/&amp;title=JavaScript%3A+GIFless+animation.+Animate+images%2Clogos+with+jQuery" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://iwebdevel.com/2009/07/23/javascript-gifless-animation-animate-imageslogos-with-jquery/&amp;title=JavaScript%3A+GIFless+animation.+Animate+images%2Clogos+with+jQuery" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://iwebdevel.com/2009/07/23/javascript-gifless-animation-animate-imageslogos-with-jquery/" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=JavaScript%3A+GIFless+animation.+Animate+images%2Clogos+with+jQuery+-+http://iwebdevel.com/2009/07/23/javascript-gifless-animation-animate-imageslogos-with-jquery/&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>



<p>Related posts:<ol><li><a href='http://iwebdevel.com/2009/06/19/javascript-what-if-jquery-animation-doesnt-firestart/' rel='bookmark' title='Permanent Link: JavaScript: What if jQuery animation doesn&#8217;t fire/start?'>JavaScript: What if jQuery animation doesn&#8217;t fire/start?</a></li>
<li><a href='http://iwebdevel.com/2009/06/20/javascript-how-to-get-the-index-position-within-a-group-of-an-object-with-jquery/' rel='bookmark' title='Permanent Link: JavaScript: How to get the index (position within a group) of an object with jQuery?'>JavaScript: How to get the index (position within a group) of an object with jQuery?</a></li>
<li><a href='http://iwebdevel.com/2009/06/13/javascript-how-to-validate-email-address-with-javascript/' rel='bookmark' title='Permanent Link: Javascript: How to validate email address with JavaScript?'>Javascript: How to validate email address with JavaScript?</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://iwebdevel.com/2009/07/23/javascript-gifless-animation-animate-imageslogos-with-jquery/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>
