<?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>iCan&#039;t Internet&#187; Webdevelopment</title>
	<atom:link href="http://www.icantinternet.org/category/webdevelopment/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.icantinternet.org</link>
	<description>All a blogger needs</description>
	<lastBuildDate>Wed, 08 Sep 2010 20:34:01 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>PHP Lesson 3: Variables and Constants</title>
		<link>http://www.icantinternet.org/2010/04/php-lesson-3-variables-and-constants/</link>
		<comments>http://www.icantinternet.org/2010/04/php-lesson-3-variables-and-constants/#comments</comments>
		<pubDate>Fri, 02 Apr 2010 16:40:10 +0000</pubDate>
		<dc:creator>Bjorn</dc:creator>
				<category><![CDATA[Beginners]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Webdevelopment]]></category>
		<category><![CDATA[constants]]></category>
		<category><![CDATA[tutorial]]></category>
		<category><![CDATA[variables]]></category>

		<guid isPermaLink="false">http://www.icantinternet.org/?p=584</guid>
		<description><![CDATA[Variables Variables are containers, they contain data. PHP is a loosely typed language, and thus the variable can contain any type of data, PHP will change the type of the variable implicitly, depending on the operation being performed on it. This is in strong contrast with strongly typed languages, such as Java, or C++, where [...]


Related posts:<ol><li><a href='http://www.icantinternet.org/2010/03/php-lesson-2-data-types/' rel='bookmark' title='Permanent Link: PHP Lesson 2: Data types'>PHP Lesson 2: Data types</a> <small>Today&#8217;s PHP lesson is about data types. Although PHP can...</small></li>
<li><a href='http://www.icantinternet.org/2010/02/php-lesson-1-general-introduction/' rel='bookmark' title='Permanent Link: PHP Lesson 1: General Introduction'>PHP Lesson 1: General Introduction</a> <small>What is PHP? PHP is a scripting language, primarily intended...</small></li>
<li><a href='http://www.icantinternet.org/2008/04/jumpstart-ajax-tutorial/' rel='bookmark' title='Permanent Link: Jumpstart AJAX Tutorial'>Jumpstart AJAX Tutorial</a> <small>Days I&#8217;ve been searching after a decent, small, simple tutorial,...</small></li>
</ol>]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.icantinternet.org%2F2010%2F04%2Fphp-lesson-3-variables-and-constants%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.icantinternet.org%2F2010%2F04%2Fphp-lesson-3-variables-and-constants%2F&amp;source=icantinternet&amp;style=normal&amp;service=ow.ly" height="61" width="50" /><br />
			</a>
		</div>
<p><span style="text-decoration: underline;"><strong>Variables</strong></span></p>
<p>Variables are containers, they contain data. PHP is a loosely typed language, and thus the variable can contain any type of data, PHP will change the type of the variable implicitly, depending on the operation being performed on it. This is in strong contrast with strongly typed languages, such as Java, or C++, where a variable can only hold one data type troughout its whole life.<br />
[ad]In PHP, variables are identified by the dollar sign: $, followed by the name you wish to give to your variable. These names can contain bot upper- and lowercase letters, numbers, and the underscore character. Other characters are not allowed in variablenames. The name can start with any letter, or an underscore, but never with a number. So, $varname, $Varname and $_varname are all correct, $1varname is not correct.</p>
<p><strong>Variable variables</strong><br />
PHP offers the extremely powerful possibility to create what is called a variable variable. This is a variable whose name is contained in another variable. An example:</p>
<p style="padding-left: 30px;"><em>$varname = &#8216;Tom&#8217;;<br />
/* Tom is the name of the variable */<br />
$$varname = &#8216;Tim&#8217;;<br />
/* Tim is the value you assign to the variable named Tom. You do this through the variable $varname, which holds the the variablename Tom */<br />
echo $Tom;<br />
/* This will display &#8216;Tim&#8217; */</em></p>
<p><em><br />
</em><br />
The same works with numbers! This means you can circumvent the variable naming restrictions mentioned above. You can also do this by defining the name between braces: ${123};<br />
And, even better, there is also something similar to variable variables, but with functions. This means you can put a function name inside a variable, and execute the function by calling the variable.</p>
<p><em>function anyFunction(){<br />
echo &#8216;icantinternet.org rules!&#8217;;<br />
}</em></p>
<p><em>$anyVar = &#8216;anyFunction&#8217;;<br />
$anyVar();  //This will call and execute the function anyFunction, and echo the truth!</em></p>
<p>I suppose it holds no surprise that all this is extremely powerful, and must be used with extreme caution to avoid programming mistakes, and possibly hacking risks.</p>
<p><strong>Does a variable exist?</strong><br />
This is a question that is not always easy to answer, due to the way PHP handles its varuables. This can lead to annoying warnings when running a scripts, up to security and functionality issues. Luckily, PHP also has a special construct to check if a variable exists and has a value set (this means, other than NULL): isset()<br />
<em>echo isset ($astupidvariable);</em></p>
<p>Calling isset() will return a true to you if a variable exists and has a value (other than NULL), and will return false to you when your variable doesn&#8217;t exist yet, or doesn&#8217;t have a value yet.</p>
<p><span style="text-decoration: underline;"><strong>Constants</strong></span></p>
<p>On the other side of the ring are the constants, which are, conversely to variables, meant for constant values (I know, it was a blinding flash of the obvious). The visibility of a constant is throughout the whole script, but, unlike variables, they can only hold scalar data, no compound data.<br />
Constants follow the same naming conventions as variables do, so upper- and lowercase letters, numbers, and underscore, but not starting with numbers. Also, constant names do not have a leading dollar sign $. Best practice is to define your constants in all uppercase. This will give you clearer and better understandable (and thus maintainable) code.</p>
<p style="padding-left: 30px;"><em>define (&#8216;GREATEST_SITE&#8217;, &#8216;icantinternet.org&#8217;); //valid name, now, throughout the code, it is known that icantinternet.org is in the constant GREATEST_SITE<br />
echo GREATEST_SITE; //Displays the truth again (icantinternet.org for those who didn&#8217;t get it <img src='http://www.icantinternet.org/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' />  ).<br />
</em></p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-bg-shr">
<ul class="socials">
		<li class="shr-blogengage">
			<a href="http://www.blogengage.com/submit.php?url=http://www.icantinternet.org/2010/04/php-lesson-3-variables-and-constants/" rel="" class="external" title="Engage with this article!">Engage with this article!</a>
		</li>
		<li class="shr-comfeed">
			<a href="http://www.icantinternet.org/2010/04/php-lesson-3-variables-and-constants/feed" rel="" 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://www.icantinternet.org/2010/04/php-lesson-3-variables-and-constants/&amp;title=PHP+Lesson+3%3A+Variables+and+Constants" rel="" 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://www.icantinternet.org/2010/04/php-lesson-3-variables-and-constants/&amp;title=PHP+Lesson+3%3A+Variables+and+Constants" rel="" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://www.icantinternet.org/2010/04/php-lesson-3-variables-and-constants/&amp;t=PHP+Lesson+3%3A+Variables+and+Constants" rel="" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-friendfeed">
			<a href="http://www.friendfeed.com/share?title=PHP+Lesson+3%3A+Variables+and+Constants&amp;link=http://www.icantinternet.org/2010/04/php-lesson-3-variables-and-constants/" rel="" class="external" title="Share this on FriendFeed">Share this on FriendFeed</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://www.icantinternet.org/2010/04/php-lesson-3-variables-and-constants/&amp;imageurl=" rel="" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-hyves">
			<a href="http://www.hyves.nl/profilemanage/add/tips/?name=PHP+Lesson+3%3A+Variables+and+Constants&amp;text=Variables%0D%0A%0D%0AVariables%20are%20containers%2C%20they%20contain%20data.%20PHP%20is%20a%20loosely%20typed%20language%2C%20and%20thus%20the%20variable%20can%20contain%20any%20type%20of%20data%2C%20PHP%20will%20change%20the%20type%20of%20the%20variable%20implicitly%2C%20depending%20on%20the%20operation%20being%20performed%20on%20it.%20This%20is%20in%20strong%20contrast%20with%20strongly%20typed%20languag+-+http://www.icantinternet.org/2010/04/php-lesson-3-variables-and-constants/&amp;rating=5" rel="" class="external" title="Share this on Hyves">Share this on Hyves</a>
		</li>
		<li class="shr-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://www.icantinternet.org/2010/04/php-lesson-3-variables-and-constants/&amp;title=PHP+Lesson+3%3A+Variables+and+Constants&amp;summary=Variables%0D%0A%0D%0AVariables%20are%20containers%2C%20they%20contain%20data.%20PHP%20is%20a%20loosely%20typed%20language%2C%20and%20thus%20the%20variable%20can%20contain%20any%20type%20of%20data%2C%20PHP%20will%20change%20the%20type%20of%20the%20variable%20implicitly%2C%20depending%20on%20the%20operation%20being%20performed%20on%20it.%20This%20is%20in%20strong%20contrast%20with%20strongly%20typed%20languag&amp;source=iCan&#039;t Internet" rel="" class="external" title="Share this on LinkedIn">Share this on LinkedIn</a>
		</li>
		<li class="shr-misterwong">
			<a href="http://www.mister-wong.com/addurl/?bm_url=http://www.icantinternet.org/2010/04/php-lesson-3-variables-and-constants/&amp;bm_description=PHP+Lesson+3%3A+Variables+and+Constants&amp;plugin=sexybookmarks" rel="" 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://www.icantinternet.org/2010/04/php-lesson-3-variables-and-constants/&amp;title=PHP+Lesson+3%3A+Variables+and+Constants" rel="" class="external" title="Share this on Mixx">Share this on Mixx</a>
		</li>
		<li class="shr-myspace">
			<a href="http://www.myspace.com/Modules/PostTo/Pages/?u=http://www.icantinternet.org/2010/04/php-lesson-3-variables-and-constants/&amp;t=PHP+Lesson+3%3A+Variables+and+Constants" rel="" class="external" title="Post this to MySpace">Post this to MySpace</a>
		</li>
		<li class="shr-pingfm">
			<a href="http://ping.fm/ref/?link=http://www.icantinternet.org/2010/04/php-lesson-3-variables-and-constants/&amp;title=PHP+Lesson+3%3A+Variables+and+Constants&amp;body=Variables%0D%0A%0D%0AVariables%20are%20containers%2C%20they%20contain%20data.%20PHP%20is%20a%20loosely%20typed%20language%2C%20and%20thus%20the%20variable%20can%20contain%20any%20type%20of%20data%2C%20PHP%20will%20change%20the%20type%20of%20the%20variable%20implicitly%2C%20depending%20on%20the%20operation%20being%20performed%20on%20it.%20This%20is%20in%20strong%20contrast%20with%20strongly%20typed%20languag" rel="" class="external" title="Ping this on Ping.fm">Ping this on Ping.fm</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://www.icantinternet.org/2010/04/php-lesson-3-variables-and-constants/&amp;title=PHP+Lesson+3%3A+Variables+and+Constants" rel="" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-squidoo">
			<a href="http://www.squidoo.com/lensmaster/bookmark?http://www.icantinternet.org/2010/04/php-lesson-3-variables-and-constants/" rel="" class="external" title="Add to a lense on Squidoo">Add to a lense on Squidoo</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://www.icantinternet.org/2010/04/php-lesson-3-variables-and-constants/&amp;title=PHP+Lesson+3%3A+Variables+and+Constants" rel="" 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://www.icantinternet.org/2010/04/php-lesson-3-variables-and-constants/" rel="" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-tumblr">
			<a href="http://www.tumblr.com/share?v=3&amp;u=http%3A%2F%2Fwww.icantinternet.org%2F2010%2F04%2Fphp-lesson-3-variables-and-constants%2F&amp;t=PHP+Lesson+3%3A+Variables+and+Constants" rel="" class="external" title="Share this on Tumblr">Share this on Tumblr</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=PHP+Lesson+3%3A+Variables+and+Constants+-+http://b2l.me/m27dr&amp;source=shareaholic" rel="" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-yahoobuzz">
			<a href="http://buzz.yahoo.com/submit/?submitUrl=http://www.icantinternet.org/2010/04/php-lesson-3-variables-and-constants/&amp;submitHeadline=PHP+Lesson+3%3A+Variables+and+Constants&amp;submitSummary=Variables%0D%0A%0D%0AVariables%20are%20containers%2C%20they%20contain%20data.%20PHP%20is%20a%20loosely%20typed%20language%2C%20and%20thus%20the%20variable%20can%20contain%20any%20type%20of%20data%2C%20PHP%20will%20change%20the%20type%20of%20the%20variable%20implicitly%2C%20depending%20on%20the%20operation%20being%20performed%20on%20it.%20This%20is%20in%20strong%20contrast%20with%20strongly%20typed%20languag&amp;submitCategory=science&amp;submitAssetType=text" rel="" class="external" title="Buzz up!">Buzz up!</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>



<p>Related posts:<ol><li><a href='http://www.icantinternet.org/2010/03/php-lesson-2-data-types/' rel='bookmark' title='Permanent Link: PHP Lesson 2: Data types'>PHP Lesson 2: Data types</a> <small>Today&#8217;s PHP lesson is about data types. Although PHP can...</small></li>
<li><a href='http://www.icantinternet.org/2010/02/php-lesson-1-general-introduction/' rel='bookmark' title='Permanent Link: PHP Lesson 1: General Introduction'>PHP Lesson 1: General Introduction</a> <small>What is PHP? PHP is a scripting language, primarily intended...</small></li>
<li><a href='http://www.icantinternet.org/2008/04/jumpstart-ajax-tutorial/' rel='bookmark' title='Permanent Link: Jumpstart AJAX Tutorial'>Jumpstart AJAX Tutorial</a> <small>Days I&#8217;ve been searching after a decent, small, simple tutorial,...</small></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.icantinternet.org/2010/04/php-lesson-3-variables-and-constants/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>PHP Lesson 2: Data types</title>
		<link>http://www.icantinternet.org/2010/03/php-lesson-2-data-types/</link>
		<comments>http://www.icantinternet.org/2010/03/php-lesson-2-data-types/#comments</comments>
		<pubDate>Thu, 25 Mar 2010 16:37:12 +0000</pubDate>
		<dc:creator>Bjorn</dc:creator>
				<category><![CDATA[Beginners]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Webdevelopment]]></category>
		<category><![CDATA[constants]]></category>
		<category><![CDATA[data types]]></category>
		<category><![CDATA[tutorial]]></category>
		<category><![CDATA[variables]]></category>

		<guid isPermaLink="false">http://www.icantinternet.org/?p=581</guid>
		<description><![CDATA[Today&#8217;s PHP lesson is about data types. Although PHP can work with many different data types, we divide them in two different categories: scalar data and composite data. Scalar data Scalar data can hold only one value at a time. PHP knows four different types of scalar data: Boolean: possible values are TRUE or FALSE [...]


Related posts:<ol><li><a href='http://www.icantinternet.org/2010/04/php-lesson-3-variables-and-constants/' rel='bookmark' title='Permanent Link: PHP Lesson 3: Variables and Constants'>PHP Lesson 3: Variables and Constants</a> <small>Variables Variables are containers, they contain data. PHP is a...</small></li>
<li><a href='http://www.icantinternet.org/2010/02/php-lesson-1-general-introduction/' rel='bookmark' title='Permanent Link: PHP Lesson 1: General Introduction'>PHP Lesson 1: General Introduction</a> <small>What is PHP? PHP is a scripting language, primarily intended...</small></li>
<li><a href='http://www.icantinternet.org/2009/01/recognizing-the-iphone-for-webpages/' rel='bookmark' title='Permanent Link: Recognizing the iPhone for webpages'>Recognizing the iPhone for webpages</a> <small>As said in my 2009 predictions, the iPhone, and other...</small></li>
</ol>]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.icantinternet.org%2F2010%2F03%2Fphp-lesson-2-data-types%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.icantinternet.org%2F2010%2F03%2Fphp-lesson-2-data-types%2F&amp;source=icantinternet&amp;style=normal&amp;service=ow.ly" height="61" width="50" /><br />
			</a>
		</div>
<p>Today&#8217;s PHP lesson is about data types. Although PHP can work with many different data types, we divide them in two different categories: scalar data and composite data.</p>
<p><span style="text-decoration: underline;"><strong>Scalar data</strong></span></p>
<p>Scalar data can hold only one value at a time. PHP knows four different types of scalar data:<br />
Boolean: possible values are TRUE or FALSE<br />
[ad]int: can be any signed (so both positive and negative values are possible) numeric integer value<br />
float: can be any signed (so both positive and negative values are possible) floating-point value<br />
string: can be any collection of binary data</p>
<p><strong>Numeric values</strong><br />
Numeric values can be both of the type integer as floating point, and can be annotated in decimal, octal (identified by leading zero) or hexadecimal (identified by leading 0x), and for floating-popint numbers, they can be annotated in decimal and exponential (2E7, 2.3E5).<br />
A very important thing to note when working with numbers i s that the precision and the range of your data types depends on the machine you are working on. For instance, &amp; 64-bit system will have a wider range than a 32-bit system. Also, PHP doesn&#8217;t track overflows. So stuffing your variable with too much data will NOT throw an error, but will result in a truncated value.<br />
Another thing to keep in mind is that floats are not always storing their value the way you would think. For example, if you execute the statement</p>
<p style="padding-left: 30px;"><em>integervar (int) (0.2 + 0.4) * 10);<br />
print integervar;</em></p>
<p>The printed result will not be 6 as you would expect, but it will be 5. This is because the result of 0.2 and 0.4 is not stored as 0.6 in the float, but as 0.59999999, and times ten, this gives 5.999999<br />
When this float is conversed to an int, it simply truncates everyting behind the fraction, resulting in 5.<br />
These things are not necessarily a disaster, but are limitations you should be aware of when doing calculations in your PHP code.</p>
<p><strong>Strings</strong><br />
When talking about strings, most programmers immediately think of text. This is indeed the case. In some languages. Not in PHP, oh no. In PHP, a string is an ordered collection of binary data. This data can be text, but can also be an image, an office document, or a mp3-file.<br />
Due to the extended character of strings, and all that is possible with them in PHP, we will get back on them later.</p>
<p><strong>Booleans</strong><br />
Booleans are the easiest of all variables, as they can only hold one of two values: true or false, and are therefor mostly used in logical operations.<br />
There are some important things to know about booleans and conversions though:<br />
When you convert any number (no matter if it is an integer or a float) to a boolean, the boolean will always be true, except when the value of the number is zero.<br />
When you convert a string to a boolean, the boolean will always be true, except when the string is empty (null), or contains a single digit 0 (zero). When there are multiple zeros in the string (00000), the boolean will convert to true.<br />
When you convert a boolean to a string, integer or float, the value will be 1 if the boolean was true, and 0 if the boolean is false.</p>
<p><span style="text-decoration: underline;"><strong>Composite Data</strong></span></p>
<p>PHP doesn&#8217;t only support the scalar data types we discussed above, but also supports two compound or composite datatypes. The name compound or somposite comes from the fact that they are in essence containers of other data.</p>
<p><strong>Arrays</strong><br />
Arrays contain data of other datatypes in an ordered way. Arrays can contain any of the abovementioned scalar data. We will digg deeper into arrays in a future lesson.</p>
<p><strong>Objects</strong><br />
Objects contain both data and code. Objects are the cornerstones of Object Oriented Programming (OOP) (who would&#8217;ve thought, right?), and are also dugg into in a future lesson.</p>
<p><span style="text-decoration: underline;"><strong>Special Data Types</strong></span></p>
<p>Besides the two data types we mentioned above, there are also two very special data types:</p>
<p><strong>NULL</strong><br />
Null indicates that a variable has no value. A variable can get the NULL value by getting it specifically assigned, or by not yet having been assigned any value at all.</p>
<p><strong>Resource</strong><br />
The resource data type is used when dealing with external resources that are not part of PHP, but are used inside your code, for example a file.</p>
<p>Converting between data types</p>
<p>PHP is very easy when it comes to converting data types, as it does all the work for you, for free! However, if you really want to convert a variable to another data type yourself, you can do this by putting the name of the data type you want to convert to between parentheses, and place it in front of the expression or variable you want to convert. Check it out, it was already there in the example we used before:</p>
<p style="padding-left: 30px;"><em>integervar (int) (0.2 + 0.4) * 10);</em></p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-bg-shr">
<ul class="socials">
		<li class="shr-blogengage">
			<a href="http://www.blogengage.com/submit.php?url=http://www.icantinternet.org/2010/03/php-lesson-2-data-types/" rel="" class="external" title="Engage with this article!">Engage with this article!</a>
		</li>
		<li class="shr-comfeed">
			<a href="http://www.icantinternet.org/2010/03/php-lesson-2-data-types/feed" rel="" 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://www.icantinternet.org/2010/03/php-lesson-2-data-types/&amp;title=PHP+Lesson+2%3A+Data+types" rel="" 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://www.icantinternet.org/2010/03/php-lesson-2-data-types/&amp;title=PHP+Lesson+2%3A+Data+types" rel="" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://www.icantinternet.org/2010/03/php-lesson-2-data-types/&amp;t=PHP+Lesson+2%3A+Data+types" rel="" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-friendfeed">
			<a href="http://www.friendfeed.com/share?title=PHP+Lesson+2%3A+Data+types&amp;link=http://www.icantinternet.org/2010/03/php-lesson-2-data-types/" rel="" class="external" title="Share this on FriendFeed">Share this on FriendFeed</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://www.icantinternet.org/2010/03/php-lesson-2-data-types/&amp;imageurl=" rel="" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-hyves">
			<a href="http://www.hyves.nl/profilemanage/add/tips/?name=PHP+Lesson+2%3A+Data+types&amp;text=Today%27s%20PHP%20lesson%20is%20about%20data%20types.%20Although%20PHP%20can%20work%20with%20many%20different%20data%20types%2C%20we%20divide%20them%20in%20two%20different%20categories%3A%20scalar%20data%20and%20composite%20data.%0D%0A%0D%0AScalar%20data%0D%0A%0D%0AScalar%20data%20can%20hold%20only%20one%20value%20at%20a%20time.%20PHP%20knows%20four%20different%20types%20of%20scalar%20data%3A%0D%0ABoolean%3A%20possible+-+http://www.icantinternet.org/2010/03/php-lesson-2-data-types/&amp;rating=5" rel="" class="external" title="Share this on Hyves">Share this on Hyves</a>
		</li>
		<li class="shr-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://www.icantinternet.org/2010/03/php-lesson-2-data-types/&amp;title=PHP+Lesson+2%3A+Data+types&amp;summary=Today%27s%20PHP%20lesson%20is%20about%20data%20types.%20Although%20PHP%20can%20work%20with%20many%20different%20data%20types%2C%20we%20divide%20them%20in%20two%20different%20categories%3A%20scalar%20data%20and%20composite%20data.%0D%0A%0D%0AScalar%20data%0D%0A%0D%0AScalar%20data%20can%20hold%20only%20one%20value%20at%20a%20time.%20PHP%20knows%20four%20different%20types%20of%20scalar%20data%3A%0D%0ABoolean%3A%20possible&amp;source=iCan&#039;t Internet" rel="" class="external" title="Share this on LinkedIn">Share this on LinkedIn</a>
		</li>
		<li class="shr-misterwong">
			<a href="http://www.mister-wong.com/addurl/?bm_url=http://www.icantinternet.org/2010/03/php-lesson-2-data-types/&amp;bm_description=PHP+Lesson+2%3A+Data+types&amp;plugin=sexybookmarks" rel="" 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://www.icantinternet.org/2010/03/php-lesson-2-data-types/&amp;title=PHP+Lesson+2%3A+Data+types" rel="" class="external" title="Share this on Mixx">Share this on Mixx</a>
		</li>
		<li class="shr-myspace">
			<a href="http://www.myspace.com/Modules/PostTo/Pages/?u=http://www.icantinternet.org/2010/03/php-lesson-2-data-types/&amp;t=PHP+Lesson+2%3A+Data+types" rel="" class="external" title="Post this to MySpace">Post this to MySpace</a>
		</li>
		<li class="shr-pingfm">
			<a href="http://ping.fm/ref/?link=http://www.icantinternet.org/2010/03/php-lesson-2-data-types/&amp;title=PHP+Lesson+2%3A+Data+types&amp;body=Today%27s%20PHP%20lesson%20is%20about%20data%20types.%20Although%20PHP%20can%20work%20with%20many%20different%20data%20types%2C%20we%20divide%20them%20in%20two%20different%20categories%3A%20scalar%20data%20and%20composite%20data.%0D%0A%0D%0AScalar%20data%0D%0A%0D%0AScalar%20data%20can%20hold%20only%20one%20value%20at%20a%20time.%20PHP%20knows%20four%20different%20types%20of%20scalar%20data%3A%0D%0ABoolean%3A%20possible" rel="" class="external" title="Ping this on Ping.fm">Ping this on Ping.fm</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://www.icantinternet.org/2010/03/php-lesson-2-data-types/&amp;title=PHP+Lesson+2%3A+Data+types" rel="" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-squidoo">
			<a href="http://www.squidoo.com/lensmaster/bookmark?http://www.icantinternet.org/2010/03/php-lesson-2-data-types/" rel="" class="external" title="Add to a lense on Squidoo">Add to a lense on Squidoo</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://www.icantinternet.org/2010/03/php-lesson-2-data-types/&amp;title=PHP+Lesson+2%3A+Data+types" rel="" 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://www.icantinternet.org/2010/03/php-lesson-2-data-types/" rel="" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-tumblr">
			<a href="http://www.tumblr.com/share?v=3&amp;u=http%3A%2F%2Fwww.icantinternet.org%2F2010%2F03%2Fphp-lesson-2-data-types%2F&amp;t=PHP+Lesson+2%3A+Data+types" rel="" class="external" title="Share this on Tumblr">Share this on Tumblr</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=PHP+Lesson+2%3A+Data+types+-+http://b2l.me/k6tpw&amp;source=shareaholic" rel="" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-yahoobuzz">
			<a href="http://buzz.yahoo.com/submit/?submitUrl=http://www.icantinternet.org/2010/03/php-lesson-2-data-types/&amp;submitHeadline=PHP+Lesson+2%3A+Data+types&amp;submitSummary=Today%27s%20PHP%20lesson%20is%20about%20data%20types.%20Although%20PHP%20can%20work%20with%20many%20different%20data%20types%2C%20we%20divide%20them%20in%20two%20different%20categories%3A%20scalar%20data%20and%20composite%20data.%0D%0A%0D%0AScalar%20data%0D%0A%0D%0AScalar%20data%20can%20hold%20only%20one%20value%20at%20a%20time.%20PHP%20knows%20four%20different%20types%20of%20scalar%20data%3A%0D%0ABoolean%3A%20possible&amp;submitCategory=science&amp;submitAssetType=text" rel="" class="external" title="Buzz up!">Buzz up!</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>



<p>Related posts:<ol><li><a href='http://www.icantinternet.org/2010/04/php-lesson-3-variables-and-constants/' rel='bookmark' title='Permanent Link: PHP Lesson 3: Variables and Constants'>PHP Lesson 3: Variables and Constants</a> <small>Variables Variables are containers, they contain data. PHP is a...</small></li>
<li><a href='http://www.icantinternet.org/2010/02/php-lesson-1-general-introduction/' rel='bookmark' title='Permanent Link: PHP Lesson 1: General Introduction'>PHP Lesson 1: General Introduction</a> <small>What is PHP? PHP is a scripting language, primarily intended...</small></li>
<li><a href='http://www.icantinternet.org/2009/01/recognizing-the-iphone-for-webpages/' rel='bookmark' title='Permanent Link: Recognizing the iPhone for webpages'>Recognizing the iPhone for webpages</a> <small>As said in my 2009 predictions, the iPhone, and other...</small></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.icantinternet.org/2010/03/php-lesson-2-data-types/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PHP Lesson 1: General Introduction</title>
		<link>http://www.icantinternet.org/2010/02/php-lesson-1-general-introduction/</link>
		<comments>http://www.icantinternet.org/2010/02/php-lesson-1-general-introduction/#comments</comments>
		<pubDate>Wed, 17 Feb 2010 10:45:43 +0000</pubDate>
		<dc:creator>Bjorn</dc:creator>
				<category><![CDATA[Beginners]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Webdevelopment]]></category>
		<category><![CDATA[php syntax]]></category>
		<category><![CDATA[server side scripting language]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://www.icantinternet.org/?p=555</guid>
		<description><![CDATA[What is PHP? PHP is a scripting language, primarily intended to generate dynamical websites on a webserver. PHP is designed in 1994, by a senior software engineer at IBM, Rasmus Lerdorf, and the language was clearly inspired by Perl. The letters PHP used to mean Personal Homepage (or more complete: Personal Home Page/Forms Interpreter, PHP/FI). [...]


Related posts:<ol><li><a href='http://www.icantinternet.org/2010/04/php-lesson-3-variables-and-constants/' rel='bookmark' title='Permanent Link: PHP Lesson 3: Variables and Constants'>PHP Lesson 3: Variables and Constants</a> <small>Variables Variables are containers, they contain data. PHP is a...</small></li>
<li><a href='http://www.icantinternet.org/2010/03/php-lesson-2-data-types/' rel='bookmark' title='Permanent Link: PHP Lesson 2: Data types'>PHP Lesson 2: Data types</a> <small>Today&#8217;s PHP lesson is about data types. Although PHP can...</small></li>
<li><a href='http://www.icantinternet.org/2008/04/jumpstart-ajax-tutorial/' rel='bookmark' title='Permanent Link: Jumpstart AJAX Tutorial'>Jumpstart AJAX Tutorial</a> <small>Days I&#8217;ve been searching after a decent, small, simple tutorial,...</small></li>
</ol>]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.icantinternet.org%2F2010%2F02%2Fphp-lesson-1-general-introduction%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.icantinternet.org%2F2010%2F02%2Fphp-lesson-1-general-introduction%2F&amp;source=icantinternet&amp;style=normal&amp;service=ow.ly" height="61" width="50" /><br />
			</a>
		</div>
<p><span style="text-decoration: underline;">What is PHP?</span></p>
<p><img class="alignright" title="PHP tutorial" src="http://farm3.static.flickr.com/2294/2265073019_c7376a2509.jpg" alt="PHP tutorial" width="350" height="234" />PHP is a scripting language, primarily intended to generate dynamical websites on a webserver. PHP is designed in 1994, by a senior software engineer at IBM, Rasmus Lerdorf, and the language was clearly inspired by Perl. The letters PHP used to mean Personal Homepage (or more complete: Personal Home Page/Forms Interpreter, PHP/FI). However, during the later developments, PHP became a recursive acronym, meaning &#8220;PHP: Hypertext Preprocessor&#8221;, which better suits what the language actually does: outputting hypertext (HTML or XHTML).<br />
Since PHP is a server side scripting language, it means that the code is not compiled, but interpreted at the time of usage (by the interpreter, most often integrated in the webserver), and that the script runs on the server side, or the webserver. This way, the output is generated on the webserver, and sent to the client (your browser) as HTML.<br />
PHP syntax is derived from many other languages, but mainly by C and Perl. However, since PHP5 also allows for object oriented programming, there is also an influence of Java noticeable. Despite all these different influences, PHP manages to remain simple and understandable.</p>
<p><span style="text-decoration: underline;">The Source and the Tags</span></p>
<p>Although PHP is primarily intended as a text processor, it is often used as a pure programming language. However, to facilitate its text processor role, it can be inserted in a text file as well, by using the special PHP tags. Four different tags can be used to insert and execute PHP code in a text file:</p>
<ul>
<p style="padding-left: 30px;">
<li> Standard tags, these are the most commonly used tags, and are the ones you should use:<br />
<em>&lt;?php<br />
&#8230;<br />
?&gt;</em></p>
<p style="padding-left: 30px;">
</li>
<li> Short tags, used to be the standard, but might interfere with XML headers, and therefor are used more rarely:<br />
<em>&lt;?<br />
&#8230;<br />
?&gt;</em></p>
<p style="padding-left: 30px;">One advantage is that they make really short syntax possible, such as &lt;?=$variable ?&gt; which prints the result of the variable straight to the output.</p>
<p style="padding-left: 30px;">
</li>
<li> Script tags were introduced for HTML editors. These editors are programmed to ignore JavaScript code (which uses the same script tags), but were unable to ignore PHP code, which is fixed by these script tags:<br />
<em>&lt;script language=&#8221;PHP&#8221;&gt;<br />
&#8230;<br />
&lt;/script&gt;</em></p>
<p style="padding-left: 30px;">
</li>
<li> ASP tags, don&#8217;t ask, nobody seems to know why these were introduced&#8230;<br />
<em>&lt;%<br />
&#8230;<br />
%&gt;</em></li>
</ul>
<p>Normally, the only tags you should use are the standard tags. Short tags, script tags and ASP tags are all considered deprecated.</p>
<p><span style="text-decoration: underline;">The newline horror</span></p>
<p>Very important to remember is that the PHP interpreter outputs EVERY character outside the PHP tags as-is. This means every whitespace, every newline character. This is not an issue for whitespaces, but can be for newline characters, as they are used as a seperator between the header portion of the http response, and the actual data. This means that a newline character that is sent to the output before the headers are finished, will cause your script to fail. To help you prevent this problem, the PHP interpreter automatically strip the first newline character after the PHP closing tag (?&gt;).</p>
<p><span style="text-decoration: underline;">The body of a PHP script</span></p>
<p>The body of a PHP script consists of statements, which can be function calls, variable assignments, data output etcetera. Each statement, with only a few exceptions, needs to be terminated by a semicolon. One of the exceptions is for instance the last statement before a closing tag. However, for consistency&#8217;s sake, it is advised to always terminate your statements.</p>
<p>Comments are another almost vital part of any programming language. Yes, I know, they are not vital at all, but you should treat them like that. Make it a habit to write comments every function, class, method or property that you write in your code. If your code required some thinking to find how you will actually code it, it will require some thinking again later when you try to reread your code, and find out why you actually coded it that way. Comments can only make your life easier!<br />
The different ways of inserting comments in a PHP script are these:</p>
<p style="padding-left: 30px;"><em>// a single line comment</em></p>
<p style="padding-left: 30px;"><em># another single line comment</em></p>
<p style="padding-left: 30px;"><em>/* a multiline<br />
comment<br />
*/</em></p>
<p style="padding-left: 30px;"><em>/**<br />
* another multiline comment<br />
* Most often used to document API&#8217;s or functions, since they can hold large parts of structured text<br />
* and still look&#8230; err&#8230; structured.<br />
*/<br />
</em><br />
Both single line comments (// and #) are closed by a newline character, or by the PHP closing tag.</p>
<p>Code blocks are a series of statements that must be executed all together, and under specific circumstances, such as a function call or a conditional statement. The statements inside code blocks are enclosed with two curly brackets ({}).</p>
<p style="padding-left: 30px;"><em>if ($whatimsaying == &#8220;yaddayadda&#8221;)<br />
then<br />
{<br />
$takeanapforsometime = 5;<br />
fall_asleep_for_how_long($takenapforsometime);<br />
}<br />
</em></p>
<p>That&#8217;s all for today folks. More is coming up in the next lesson, which will start with Datatypes!</p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-bg-shr">
<ul class="socials">
		<li class="shr-blogengage">
			<a href="http://www.blogengage.com/submit.php?url=http://www.icantinternet.org/2010/02/php-lesson-1-general-introduction/" rel="" class="external" title="Engage with this article!">Engage with this article!</a>
		</li>
		<li class="shr-comfeed">
			<a href="http://www.icantinternet.org/2010/02/php-lesson-1-general-introduction/feed" rel="" 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://www.icantinternet.org/2010/02/php-lesson-1-general-introduction/&amp;title=PHP+Lesson+1%3A+General+Introduction" rel="" 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://www.icantinternet.org/2010/02/php-lesson-1-general-introduction/&amp;title=PHP+Lesson+1%3A+General+Introduction" rel="" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://www.icantinternet.org/2010/02/php-lesson-1-general-introduction/&amp;t=PHP+Lesson+1%3A+General+Introduction" rel="" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-friendfeed">
			<a href="http://www.friendfeed.com/share?title=PHP+Lesson+1%3A+General+Introduction&amp;link=http://www.icantinternet.org/2010/02/php-lesson-1-general-introduction/" rel="" class="external" title="Share this on FriendFeed">Share this on FriendFeed</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://www.icantinternet.org/2010/02/php-lesson-1-general-introduction/&amp;imageurl=" rel="" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-hyves">
			<a href="http://www.hyves.nl/profilemanage/add/tips/?name=PHP+Lesson+1%3A+General+Introduction&amp;text=What%20is%20PHP%3F%0D%0A%0D%0APHP%20is%20a%20scripting%20language%2C%20primarily%20intended%20to%20generate%20dynamical%20websites%20on%20a%20webserver.%20PHP%20is%20designed%20in%201994%2C%20by%20a%20senior%20software%20engineer%20at%20IBM%2C%20Rasmus%20Lerdorf%2C%20and%20the%20language%20was%20clearly%20inspired%20by%20Perl.%20The%20letters%20PHP%20used%20to%20mean%20Personal%20Homepage%20%28or%20more%20complet+-+http://www.icantinternet.org/2010/02/php-lesson-1-general-introduction/&amp;rating=5" rel="" class="external" title="Share this on Hyves">Share this on Hyves</a>
		</li>
		<li class="shr-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://www.icantinternet.org/2010/02/php-lesson-1-general-introduction/&amp;title=PHP+Lesson+1%3A+General+Introduction&amp;summary=What%20is%20PHP%3F%0D%0A%0D%0APHP%20is%20a%20scripting%20language%2C%20primarily%20intended%20to%20generate%20dynamical%20websites%20on%20a%20webserver.%20PHP%20is%20designed%20in%201994%2C%20by%20a%20senior%20software%20engineer%20at%20IBM%2C%20Rasmus%20Lerdorf%2C%20and%20the%20language%20was%20clearly%20inspired%20by%20Perl.%20The%20letters%20PHP%20used%20to%20mean%20Personal%20Homepage%20%28or%20more%20complet&amp;source=iCan&#039;t Internet" rel="" class="external" title="Share this on LinkedIn">Share this on LinkedIn</a>
		</li>
		<li class="shr-misterwong">
			<a href="http://www.mister-wong.com/addurl/?bm_url=http://www.icantinternet.org/2010/02/php-lesson-1-general-introduction/&amp;bm_description=PHP+Lesson+1%3A+General+Introduction&amp;plugin=sexybookmarks" rel="" 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://www.icantinternet.org/2010/02/php-lesson-1-general-introduction/&amp;title=PHP+Lesson+1%3A+General+Introduction" rel="" class="external" title="Share this on Mixx">Share this on Mixx</a>
		</li>
		<li class="shr-myspace">
			<a href="http://www.myspace.com/Modules/PostTo/Pages/?u=http://www.icantinternet.org/2010/02/php-lesson-1-general-introduction/&amp;t=PHP+Lesson+1%3A+General+Introduction" rel="" class="external" title="Post this to MySpace">Post this to MySpace</a>
		</li>
		<li class="shr-pingfm">
			<a href="http://ping.fm/ref/?link=http://www.icantinternet.org/2010/02/php-lesson-1-general-introduction/&amp;title=PHP+Lesson+1%3A+General+Introduction&amp;body=What%20is%20PHP%3F%0D%0A%0D%0APHP%20is%20a%20scripting%20language%2C%20primarily%20intended%20to%20generate%20dynamical%20websites%20on%20a%20webserver.%20PHP%20is%20designed%20in%201994%2C%20by%20a%20senior%20software%20engineer%20at%20IBM%2C%20Rasmus%20Lerdorf%2C%20and%20the%20language%20was%20clearly%20inspired%20by%20Perl.%20The%20letters%20PHP%20used%20to%20mean%20Personal%20Homepage%20%28or%20more%20complet" rel="" class="external" title="Ping this on Ping.fm">Ping this on Ping.fm</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://www.icantinternet.org/2010/02/php-lesson-1-general-introduction/&amp;title=PHP+Lesson+1%3A+General+Introduction" rel="" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-squidoo">
			<a href="http://www.squidoo.com/lensmaster/bookmark?http://www.icantinternet.org/2010/02/php-lesson-1-general-introduction/" rel="" class="external" title="Add to a lense on Squidoo">Add to a lense on Squidoo</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://www.icantinternet.org/2010/02/php-lesson-1-general-introduction/&amp;title=PHP+Lesson+1%3A+General+Introduction" rel="" 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://www.icantinternet.org/2010/02/php-lesson-1-general-introduction/" rel="" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-tumblr">
			<a href="http://www.tumblr.com/share?v=3&amp;u=http%3A%2F%2Fwww.icantinternet.org%2F2010%2F02%2Fphp-lesson-1-general-introduction%2F&amp;t=PHP+Lesson+1%3A+General+Introduction" rel="" class="external" title="Share this on Tumblr">Share this on Tumblr</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=PHP+Lesson+1%3A+General+Introduction+-+http://b2l.me/gkvsa&amp;source=shareaholic" rel="" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-yahoobuzz">
			<a href="http://buzz.yahoo.com/submit/?submitUrl=http://www.icantinternet.org/2010/02/php-lesson-1-general-introduction/&amp;submitHeadline=PHP+Lesson+1%3A+General+Introduction&amp;submitSummary=What%20is%20PHP%3F%0D%0A%0D%0APHP%20is%20a%20scripting%20language%2C%20primarily%20intended%20to%20generate%20dynamical%20websites%20on%20a%20webserver.%20PHP%20is%20designed%20in%201994%2C%20by%20a%20senior%20software%20engineer%20at%20IBM%2C%20Rasmus%20Lerdorf%2C%20and%20the%20language%20was%20clearly%20inspired%20by%20Perl.%20The%20letters%20PHP%20used%20to%20mean%20Personal%20Homepage%20%28or%20more%20complet&amp;submitCategory=science&amp;submitAssetType=text" rel="" class="external" title="Buzz up!">Buzz up!</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>



<p>Related posts:<ol><li><a href='http://www.icantinternet.org/2010/04/php-lesson-3-variables-and-constants/' rel='bookmark' title='Permanent Link: PHP Lesson 3: Variables and Constants'>PHP Lesson 3: Variables and Constants</a> <small>Variables Variables are containers, they contain data. PHP is a...</small></li>
<li><a href='http://www.icantinternet.org/2010/03/php-lesson-2-data-types/' rel='bookmark' title='Permanent Link: PHP Lesson 2: Data types'>PHP Lesson 2: Data types</a> <small>Today&#8217;s PHP lesson is about data types. Although PHP can...</small></li>
<li><a href='http://www.icantinternet.org/2008/04/jumpstart-ajax-tutorial/' rel='bookmark' title='Permanent Link: Jumpstart AJAX Tutorial'>Jumpstart AJAX Tutorial</a> <small>Days I&#8217;ve been searching after a decent, small, simple tutorial,...</small></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.icantinternet.org/2010/02/php-lesson-1-general-introduction/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>The best scripting-tips on the net</title>
		<link>http://www.icantinternet.org/2009/02/the-best-scripting-tips-on-the-net/</link>
		<comments>http://www.icantinternet.org/2009/02/the-best-scripting-tips-on-the-net/#comments</comments>
		<pubDate>Wed, 11 Feb 2009 21:23:35 +0000</pubDate>
		<dc:creator>Bjorn</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[Webdevelopment]]></category>
		<category><![CDATA[developping]]></category>
		<category><![CDATA[Scripting]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://www.icantinternet.org/?p=158</guid>
		<description><![CDATA[ASP.NET Microsoft ASP.NET Developer Center http://msdn.microsoft.com/asp.net The Microsoft-homepage for ASP.NET-developpers with documentation and community ASP Free www.aspfree.com Website of independent ASP-programmers with help, trics, manuals, blogs, forum and information about ASP.NET ASPNL www.aspnl.com Usefull information about ASP and .NET Framework, including ASP.NET [ad] JavaScript/JScript JavaScript tutorials javascript.internet.com The website includes tutorials, download center, blog, community [...]


Related posts:<ol><li><a href='http://www.icantinternet.org/2010/02/php-lesson-1-general-introduction/' rel='bookmark' title='Permanent Link: PHP Lesson 1: General Introduction'>PHP Lesson 1: General Introduction</a> <small>What is PHP? PHP is a scripting language, primarily intended...</small></li>
<li><a href='http://www.icantinternet.org/2008/04/jumpstart-ajax-tutorial/' rel='bookmark' title='Permanent Link: Jumpstart AJAX Tutorial'>Jumpstart AJAX Tutorial</a> <small>Days I&#8217;ve been searching after a decent, small, simple tutorial,...</small></li>
<li><a href='http://www.icantinternet.org/2009/01/recognizing-the-iphone-for-webpages/' rel='bookmark' title='Permanent Link: Recognizing the iPhone for webpages'>Recognizing the iPhone for webpages</a> <small>As said in my 2009 predictions, the iPhone, and other...</small></li>
</ol>]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.icantinternet.org%2F2009%2F02%2Fthe-best-scripting-tips-on-the-net%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.icantinternet.org%2F2009%2F02%2Fthe-best-scripting-tips-on-the-net%2F&amp;source=icantinternet&amp;style=normal&amp;service=ow.ly" height="61" width="50" /><br />
			</a>
		</div>
<p><strong>ASP.NET</strong></p>
<p><strong><em>Microsoft ASP.NET Developer Center</em></strong><br />
<a href="http://msdn.microsoft.com/asp.net  " target="_blank">http://msdn.microsoft.com/asp.net</a><br />
The Microsoft-homepage for ASP.NET-developpers with documentation and community<br />
<em><strong><br />
ASP Free</strong></em><br />
<a href="www.aspfree.com  " target="_blank">www.aspfree.com</a><br />
Website of independent ASP-programmers with help, trics, manuals, blogs, forum and information about ASP.NET<br />
<em><strong><br />
ASPNL</strong></em><br />
<a href="http://www.aspnl.com  " target="_blank">www.aspnl.com</a><br />
Usefull information about ASP and .NET Framework, including ASP.NET<br />
[ad]</p>
<p><strong>JavaScript/JScript</strong></p>
<p><em><strong>JavaScript tutorials</strong></em><br />
<a href="http://javascript.internet.com/  " target="_blank">javascript.internet.com</a><br />
The website includes tutorials, download center, blog, community and resources</p>
<p><em><strong>Javascript.com</strong></em><br />
<a href="http://www.javascript.com/  " target="_blank">www.javascript.com</a><br />
This website includes community center, forums, blog and research centers</p>
<p><strong>Perl</strong></p>
<p><em><strong>Perl-FAQ</strong></em><br />
<a href="http://faq.perl.org  " target="_blank">faq.perl.org</a><br />
FAQ&#8217;s about Perl: getting your answers!</p>
<p><em><strong>Perl-community</strong></em><br />
<a href="http://perlmonks.org  " target="_blank">perlmonks.org</a><br />
Community about Perl with information for developpers, downloads and tips</p>
<p><em><strong>Perl.org</strong></em><br />
<a href="http://www.perl.org  ">www.perl.org</a><br />
Perl-Community with information about Perl-developping, downloads and programmingtips</p>
<p><em><strong>Perl-archive</strong></em><br />
<a href="http://www.perlarchive.com  " target="_self">www.perlarchive.com</a><br />
The international Perl-archive: a learning-center with articles, examples and tutorials</p>
<p><strong>PHP</strong></p>
<p><em><strong>PHP-community</strong></em><br />
<a href="http://www.php.net  ">www.php.net</a><br />
Website with manuals, downloads, faq, mailinglists</p>
<p><em><strong>PHP-Tutorial</strong></em><br />
<a href="http://www.w3schools.com/PHP  ">www.w3schools.com/PHP</a><br />
Learning PHP from scratch</p>
<p><strong>Python</strong></p>
<p><em><strong>Python.org</strong></em><br />
<a href="http://www.python.org  " target="_self">www.python.org</a><br />
Website with tutorials, downloads and documentation</p>
<p><em><strong>Python-newsgroup</strong></em><br />
www.news:<a href="http://groups.google.com/group/comp.lang.python/topics?pli=1" target="_blank">com.lang.python</a><br />
Python-newsgroup.</p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-bg-shr">
<ul class="socials">
		<li class="shr-blogengage">
			<a href="http://www.blogengage.com/submit.php?url=http://www.icantinternet.org/2009/02/the-best-scripting-tips-on-the-net/" rel="" class="external" title="Engage with this article!">Engage with this article!</a>
		</li>
		<li class="shr-comfeed">
			<a href="http://www.icantinternet.org/2009/02/the-best-scripting-tips-on-the-net/feed" rel="" 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://www.icantinternet.org/2009/02/the-best-scripting-tips-on-the-net/&amp;title=The+best+scripting-tips+on+the+net+++" rel="" 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://www.icantinternet.org/2009/02/the-best-scripting-tips-on-the-net/&amp;title=The+best+scripting-tips+on+the+net+++" rel="" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://www.icantinternet.org/2009/02/the-best-scripting-tips-on-the-net/&amp;t=The+best+scripting-tips+on+the+net+++" rel="" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-friendfeed">
			<a href="http://www.friendfeed.com/share?title=The+best+scripting-tips+on+the+net+++&amp;link=http://www.icantinternet.org/2009/02/the-best-scripting-tips-on-the-net/" rel="" class="external" title="Share this on FriendFeed">Share this on FriendFeed</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://www.icantinternet.org/2009/02/the-best-scripting-tips-on-the-net/&amp;imageurl=" rel="" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-hyves">
			<a href="http://www.hyves.nl/profilemanage/add/tips/?name=The+best+scripting-tips+on+the+net+++&amp;text=ASP.NET%0D%0A%0D%0AMicrosoft%20ASP.NET%20Developer%20Center%0D%0Ahttp%3A%2F%2Fmsdn.microsoft.com%2Fasp.net%0D%0AThe%20Microsoft-homepage%20for%20ASP.NET-developpers%20with%20documentation%20and%20community%0D%0A%0D%0AASP%20Free%0D%0Awww.aspfree.com%0D%0AWebsite%20of%20independent%20ASP-programmers%20with%20help%2C%20trics%2C%20manuals%2C%20blogs%2C%20forum%20and%20information%20about%20ASP.NET+-+http://www.icantinternet.org/2009/02/the-best-scripting-tips-on-the-net/&amp;rating=5" rel="" class="external" title="Share this on Hyves">Share this on Hyves</a>
		</li>
		<li class="shr-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://www.icantinternet.org/2009/02/the-best-scripting-tips-on-the-net/&amp;title=The+best+scripting-tips+on+the+net+++&amp;summary=ASP.NET%0D%0A%0D%0AMicrosoft%20ASP.NET%20Developer%20Center%0D%0Ahttp%3A%2F%2Fmsdn.microsoft.com%2Fasp.net%0D%0AThe%20Microsoft-homepage%20for%20ASP.NET-developpers%20with%20documentation%20and%20community%0D%0A%0D%0AASP%20Free%0D%0Awww.aspfree.com%0D%0AWebsite%20of%20independent%20ASP-programmers%20with%20help%2C%20trics%2C%20manuals%2C%20blogs%2C%20forum%20and%20information%20about%20ASP.NET&amp;source=iCan&#039;t Internet" rel="" class="external" title="Share this on LinkedIn">Share this on LinkedIn</a>
		</li>
		<li class="shr-misterwong">
			<a href="http://www.mister-wong.com/addurl/?bm_url=http://www.icantinternet.org/2009/02/the-best-scripting-tips-on-the-net/&amp;bm_description=The+best+scripting-tips+on+the+net+++&amp;plugin=sexybookmarks" rel="" 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://www.icantinternet.org/2009/02/the-best-scripting-tips-on-the-net/&amp;title=The+best+scripting-tips+on+the+net+++" rel="" class="external" title="Share this on Mixx">Share this on Mixx</a>
		</li>
		<li class="shr-myspace">
			<a href="http://www.myspace.com/Modules/PostTo/Pages/?u=http://www.icantinternet.org/2009/02/the-best-scripting-tips-on-the-net/&amp;t=The+best+scripting-tips+on+the+net+++" rel="" class="external" title="Post this to MySpace">Post this to MySpace</a>
		</li>
		<li class="shr-pingfm">
			<a href="http://ping.fm/ref/?link=http://www.icantinternet.org/2009/02/the-best-scripting-tips-on-the-net/&amp;title=The+best+scripting-tips+on+the+net+++&amp;body=ASP.NET%0D%0A%0D%0AMicrosoft%20ASP.NET%20Developer%20Center%0D%0Ahttp%3A%2F%2Fmsdn.microsoft.com%2Fasp.net%0D%0AThe%20Microsoft-homepage%20for%20ASP.NET-developpers%20with%20documentation%20and%20community%0D%0A%0D%0AASP%20Free%0D%0Awww.aspfree.com%0D%0AWebsite%20of%20independent%20ASP-programmers%20with%20help%2C%20trics%2C%20manuals%2C%20blogs%2C%20forum%20and%20information%20about%20ASP.NET" rel="" class="external" title="Ping this on Ping.fm">Ping this on Ping.fm</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://www.icantinternet.org/2009/02/the-best-scripting-tips-on-the-net/&amp;title=The+best+scripting-tips+on+the+net+++" rel="" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-squidoo">
			<a href="http://www.squidoo.com/lensmaster/bookmark?http://www.icantinternet.org/2009/02/the-best-scripting-tips-on-the-net/" rel="" class="external" title="Add to a lense on Squidoo">Add to a lense on Squidoo</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://www.icantinternet.org/2009/02/the-best-scripting-tips-on-the-net/&amp;title=The+best+scripting-tips+on+the+net+++" rel="" 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://www.icantinternet.org/2009/02/the-best-scripting-tips-on-the-net/" rel="" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-tumblr">
			<a href="http://www.tumblr.com/share?v=3&amp;u=http%3A%2F%2Fwww.icantinternet.org%2F2009%2F02%2Fthe-best-scripting-tips-on-the-net%2F&amp;t=The+best+scripting-tips+on+the+net+++" rel="" class="external" title="Share this on Tumblr">Share this on Tumblr</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=The+best+scripting-tips+on+the+net++++-+http://b2l.me/b24k3&amp;source=shareaholic" rel="" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-yahoobuzz">
			<a href="http://buzz.yahoo.com/submit/?submitUrl=http://www.icantinternet.org/2009/02/the-best-scripting-tips-on-the-net/&amp;submitHeadline=The+best+scripting-tips+on+the+net+++&amp;submitSummary=ASP.NET%0D%0A%0D%0AMicrosoft%20ASP.NET%20Developer%20Center%0D%0Ahttp%3A%2F%2Fmsdn.microsoft.com%2Fasp.net%0D%0AThe%20Microsoft-homepage%20for%20ASP.NET-developpers%20with%20documentation%20and%20community%0D%0A%0D%0AASP%20Free%0D%0Awww.aspfree.com%0D%0AWebsite%20of%20independent%20ASP-programmers%20with%20help%2C%20trics%2C%20manuals%2C%20blogs%2C%20forum%20and%20information%20about%20ASP.NET&amp;submitCategory=science&amp;submitAssetType=text" rel="" class="external" title="Buzz up!">Buzz up!</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>



<p>Related posts:<ol><li><a href='http://www.icantinternet.org/2010/02/php-lesson-1-general-introduction/' rel='bookmark' title='Permanent Link: PHP Lesson 1: General Introduction'>PHP Lesson 1: General Introduction</a> <small>What is PHP? PHP is a scripting language, primarily intended...</small></li>
<li><a href='http://www.icantinternet.org/2008/04/jumpstart-ajax-tutorial/' rel='bookmark' title='Permanent Link: Jumpstart AJAX Tutorial'>Jumpstart AJAX Tutorial</a> <small>Days I&#8217;ve been searching after a decent, small, simple tutorial,...</small></li>
<li><a href='http://www.icantinternet.org/2009/01/recognizing-the-iphone-for-webpages/' rel='bookmark' title='Permanent Link: Recognizing the iPhone for webpages'>Recognizing the iPhone for webpages</a> <small>As said in my 2009 predictions, the iPhone, and other...</small></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.icantinternet.org/2009/02/the-best-scripting-tips-on-the-net/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Golden Rules of E-Commerce Design</title>
		<link>http://www.icantinternet.org/2009/02/golden-rules-of-e-commerce-design/</link>
		<comments>http://www.icantinternet.org/2009/02/golden-rules-of-e-commerce-design/#comments</comments>
		<pubDate>Mon, 09 Feb 2009 20:07:56 +0000</pubDate>
		<dc:creator>Bjorn</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[Internet Marketing]]></category>
		<category><![CDATA[Webdevelopment]]></category>
		<category><![CDATA[E-Commerce]]></category>
		<category><![CDATA[webdesign]]></category>

		<guid isPermaLink="false">http://www.icantinternet.org/?p=151</guid>
		<description><![CDATA[Rule1 Keep the search function in the same place Always ensure that your search function feature is on every page and is in the same location for ease of accessibility. On some sites, the search function appears on the homepage, but is then missing from all the other pages in the store. Avoid this! Rule [...]


Related posts:<ol><li><a href='http://www.icantinternet.org/2008/12/optimizing-internal-linking/' rel='bookmark' title='Permanent Link: Optimizing Internal Linking'>Optimizing Internal Linking</a> <small>Good SEO starts with good linking tactiques. And good linking...</small></li>
<li><a href='http://www.icantinternet.org/2008/12/optimizing-internal-linking-2/' rel='bookmark' title='Permanent Link: Optimizing Internal Linking'>Optimizing Internal Linking</a> <small>Good SEO starts with good linking tactiques. And good linking...</small></li>
<li><a href='http://www.icantinternet.org/2009/02/what-is-internet-marketing/' rel='bookmark' title='Permanent Link: What is Internet Marketing?'>What is Internet Marketing?</a> <small>Act or promoting your business on through internet is known...</small></li>
</ol>]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.icantinternet.org%2F2009%2F02%2Fgolden-rules-of-e-commerce-design%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.icantinternet.org%2F2009%2F02%2Fgolden-rules-of-e-commerce-design%2F&amp;source=icantinternet&amp;style=normal&amp;service=ow.ly" height="61" width="50" /><br />
			</a>
		</div>
<div><strong>Rule1<br />
<em>Keep the search function in the same place</em></strong></div>
<div>Always ensure that your search function feature is on every page and is in the same location for ease of accessibility. On some sites, the search function appears on the homepage, but is then missing from all the other pages in the store. Avoid this!</div>
<div></div>
<div><strong> </strong></div>
<div><strong>Rule 2</strong></div>
<div><strong></strong></div>
<div><strong><em>Don&#8217;t confuse checkout and basket</em></strong></div>
<div>Never confuse your costumer about how your trolley and checkout system work. Some sites don&#8217;t make it clear that you have to click through to your trolley to enter its checkout system. Make it very clear which button to click on!</div>
<div></div>
<div><strong>Rule3</strong></div>
<div><strong></strong></div>
<div><strong><em>Avoid too much Flash animation</em></strong></div>
<div>Using Flash in an E-commerce site can be done succesfully, but over use of Flash makes your site hard to navigate. Sometimes the small movie window doesn&#8217;t allow you to present your goods properly en persuade your customers to buy.</div>
<div></div>
<div><strong>Rule4</strong></div>
<div><strong></strong></div>
<div><strong><em>Design clear site navigation</em></strong></div>
<div>As visitors click around any E-commerce site, it&#8217;s easy for them to forget which pages pages they have been on, or which product they have looked at. Try to change the color of your product links so visitors can instantly see which products they have viewed before.</div>
<div></div>
<div><strong>Rule5</strong></div>
<div><strong></strong></div>
<div><strong><em>[ad]Enable easy browsing</em></strong></div>
<div>Visitors often just want to browse a site, but many businesses don&#8217;t make this very easy. Use clear tabbed category listings for easy browsing or use left navigation to take visitors to their individual stores to have a look around.</div>
<div></div>
<div><strong>Rule6</strong></div>
<div><strong></strong></div>
<div><strong><em>Product information</em></strong></div>
<div>As customers can&#8217;t handle goods on an E-commerce site, it&#8217;s imperative that they have as much information as possible about your goods so they can decide whether to buy. Ensure that your detailed product is persuasive.</div>
<div></div>
<div><strong>Rule7</strong></div>
<div><strong><em>Make checkout easy</em></strong></div>
<div><strong><em></em></strong>Once a customer has entered the checkout process, it&#8217;s important that they know what to do and where they are in the system. Confusing a customer at this crucial point may well result in an abandoned trolley. Early Learning use superb iconography to show their customers where they are in the checkout process.</div>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-bg-shr">
<ul class="socials">
		<li class="shr-blogengage">
			<a href="http://www.blogengage.com/submit.php?url=http://www.icantinternet.org/2009/02/golden-rules-of-e-commerce-design/" rel="" class="external" title="Engage with this article!">Engage with this article!</a>
		</li>
		<li class="shr-comfeed">
			<a href="http://www.icantinternet.org/2009/02/golden-rules-of-e-commerce-design/feed" rel="" 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://www.icantinternet.org/2009/02/golden-rules-of-e-commerce-design/&amp;title=Golden+Rules+of+E-Commerce+Design" rel="" 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://www.icantinternet.org/2009/02/golden-rules-of-e-commerce-design/&amp;title=Golden+Rules+of+E-Commerce+Design" rel="" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://www.icantinternet.org/2009/02/golden-rules-of-e-commerce-design/&amp;t=Golden+Rules+of+E-Commerce+Design" rel="" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-friendfeed">
			<a href="http://www.friendfeed.com/share?title=Golden+Rules+of+E-Commerce+Design&amp;link=http://www.icantinternet.org/2009/02/golden-rules-of-e-commerce-design/" rel="" class="external" title="Share this on FriendFeed">Share this on FriendFeed</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://www.icantinternet.org/2009/02/golden-rules-of-e-commerce-design/&amp;imageurl=" rel="" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-hyves">
			<a href="http://www.hyves.nl/profilemanage/add/tips/?name=Golden+Rules+of+E-Commerce+Design&amp;text=Rule1%0D%0AKeep%20the%20search%20function%20in%20the%20same%20place%0D%0AAlways%20ensure%20that%20your%20search%20function%20feature%20is%20on%20every%20page%20and%20is%20in%20the%20same%20location%20for%20ease%20of%20accessibility.%20On%20some%20sites%2C%20the%20search%20function%20appears%20on%20the%20homepage%2C%20but%20is%20then%20missing%20from%20all%20the%20other%20pages%20in%20the%20store.%20Avoid%20this+-+http://www.icantinternet.org/2009/02/golden-rules-of-e-commerce-design/&amp;rating=5" rel="" class="external" title="Share this on Hyves">Share this on Hyves</a>
		</li>
		<li class="shr-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://www.icantinternet.org/2009/02/golden-rules-of-e-commerce-design/&amp;title=Golden+Rules+of+E-Commerce+Design&amp;summary=Rule1%0D%0AKeep%20the%20search%20function%20in%20the%20same%20place%0D%0AAlways%20ensure%20that%20your%20search%20function%20feature%20is%20on%20every%20page%20and%20is%20in%20the%20same%20location%20for%20ease%20of%20accessibility.%20On%20some%20sites%2C%20the%20search%20function%20appears%20on%20the%20homepage%2C%20but%20is%20then%20missing%20from%20all%20the%20other%20pages%20in%20the%20store.%20Avoid%20this&amp;source=iCan&#039;t Internet" rel="" class="external" title="Share this on LinkedIn">Share this on LinkedIn</a>
		</li>
		<li class="shr-misterwong">
			<a href="http://www.mister-wong.com/addurl/?bm_url=http://www.icantinternet.org/2009/02/golden-rules-of-e-commerce-design/&amp;bm_description=Golden+Rules+of+E-Commerce+Design&amp;plugin=sexybookmarks" rel="" 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://www.icantinternet.org/2009/02/golden-rules-of-e-commerce-design/&amp;title=Golden+Rules+of+E-Commerce+Design" rel="" class="external" title="Share this on Mixx">Share this on Mixx</a>
		</li>
		<li class="shr-myspace">
			<a href="http://www.myspace.com/Modules/PostTo/Pages/?u=http://www.icantinternet.org/2009/02/golden-rules-of-e-commerce-design/&amp;t=Golden+Rules+of+E-Commerce+Design" rel="" class="external" title="Post this to MySpace">Post this to MySpace</a>
		</li>
		<li class="shr-pingfm">
			<a href="http://ping.fm/ref/?link=http://www.icantinternet.org/2009/02/golden-rules-of-e-commerce-design/&amp;title=Golden+Rules+of+E-Commerce+Design&amp;body=Rule1%0D%0AKeep%20the%20search%20function%20in%20the%20same%20place%0D%0AAlways%20ensure%20that%20your%20search%20function%20feature%20is%20on%20every%20page%20and%20is%20in%20the%20same%20location%20for%20ease%20of%20accessibility.%20On%20some%20sites%2C%20the%20search%20function%20appears%20on%20the%20homepage%2C%20but%20is%20then%20missing%20from%20all%20the%20other%20pages%20in%20the%20store.%20Avoid%20this" rel="" class="external" title="Ping this on Ping.fm">Ping this on Ping.fm</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://www.icantinternet.org/2009/02/golden-rules-of-e-commerce-design/&amp;title=Golden+Rules+of+E-Commerce+Design" rel="" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-squidoo">
			<a href="http://www.squidoo.com/lensmaster/bookmark?http://www.icantinternet.org/2009/02/golden-rules-of-e-commerce-design/" rel="" class="external" title="Add to a lense on Squidoo">Add to a lense on Squidoo</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://www.icantinternet.org/2009/02/golden-rules-of-e-commerce-design/&amp;title=Golden+Rules+of+E-Commerce+Design" rel="" 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://www.icantinternet.org/2009/02/golden-rules-of-e-commerce-design/" rel="" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-tumblr">
			<a href="http://www.tumblr.com/share?v=3&amp;u=http%3A%2F%2Fwww.icantinternet.org%2F2009%2F02%2Fgolden-rules-of-e-commerce-design%2F&amp;t=Golden+Rules+of+E-Commerce+Design" rel="" class="external" title="Share this on Tumblr">Share this on Tumblr</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=Golden+Rules+of+E-Commerce+Design+-+http://b2l.me/b2zad&amp;source=shareaholic" rel="" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-yahoobuzz">
			<a href="http://buzz.yahoo.com/submit/?submitUrl=http://www.icantinternet.org/2009/02/golden-rules-of-e-commerce-design/&amp;submitHeadline=Golden+Rules+of+E-Commerce+Design&amp;submitSummary=Rule1%0D%0AKeep%20the%20search%20function%20in%20the%20same%20place%0D%0AAlways%20ensure%20that%20your%20search%20function%20feature%20is%20on%20every%20page%20and%20is%20in%20the%20same%20location%20for%20ease%20of%20accessibility.%20On%20some%20sites%2C%20the%20search%20function%20appears%20on%20the%20homepage%2C%20but%20is%20then%20missing%20from%20all%20the%20other%20pages%20in%20the%20store.%20Avoid%20this&amp;submitCategory=science&amp;submitAssetType=text" rel="" class="external" title="Buzz up!">Buzz up!</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>



<p>Related posts:<ol><li><a href='http://www.icantinternet.org/2008/12/optimizing-internal-linking/' rel='bookmark' title='Permanent Link: Optimizing Internal Linking'>Optimizing Internal Linking</a> <small>Good SEO starts with good linking tactiques. And good linking...</small></li>
<li><a href='http://www.icantinternet.org/2008/12/optimizing-internal-linking-2/' rel='bookmark' title='Permanent Link: Optimizing Internal Linking'>Optimizing Internal Linking</a> <small>Good SEO starts with good linking tactiques. And good linking...</small></li>
<li><a href='http://www.icantinternet.org/2009/02/what-is-internet-marketing/' rel='bookmark' title='Permanent Link: What is Internet Marketing?'>What is Internet Marketing?</a> <small>Act or promoting your business on through internet is known...</small></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.icantinternet.org/2009/02/golden-rules-of-e-commerce-design/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Recognizing the iPhone for webpages</title>
		<link>http://www.icantinternet.org/2009/01/recognizing-the-iphone-for-webpages/</link>
		<comments>http://www.icantinternet.org/2009/01/recognizing-the-iphone-for-webpages/#comments</comments>
		<pubDate>Wed, 28 Jan 2009 15:15:21 +0000</pubDate>
		<dc:creator>Bjorn</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[Mac]]></category>
		<category><![CDATA[Webdevelopment]]></category>
		<category><![CDATA[Webmaster]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[Add new tag]]></category>
		<category><![CDATA[browser]]></category>

		<guid isPermaLink="false">http://www.icantinternet.org/?p=135</guid>
		<description><![CDATA[As said in my 2009 predictions, the iPhone, and other mobile devices, will get a larger share in the tools your visitors use to visit your websites. So I suppose you will not be surprised when I tell you that it is very important to sure that your website is ready to receive your mobile [...]


Related posts:<ol><li><a href='http://www.icantinternet.org/2008/12/iphone-webtricks/' rel='bookmark' title='Permanent Link: iPhone Webtricks'>iPhone Webtricks</a> <small>When creating a website specifically aimed at the iPhone, there...</small></li>
<li><a href='http://www.icantinternet.org/2009/01/20-iphone-apps-for-bloggers-and-such/' rel='bookmark' title='Permanent Link: 20+ iPhone Apps for Bloggers and such'>20+ iPhone Apps for Bloggers and such</a> <small>While Digging away through my shouts on Digg, I came...</small></li>
<li><a href='http://www.icantinternet.org/2008/04/jumpstart-ajax-tutorial/' rel='bookmark' title='Permanent Link: Jumpstart AJAX Tutorial'>Jumpstart AJAX Tutorial</a> <small>Days I&#8217;ve been searching after a decent, small, simple tutorial,...</small></li>
</ol>]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.icantinternet.org%2F2009%2F01%2Frecognizing-the-iphone-for-webpages%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.icantinternet.org%2F2009%2F01%2Frecognizing-the-iphone-for-webpages%2F&amp;source=icantinternet&amp;style=normal&amp;service=ow.ly" height="61" width="50" /><br />
			</a>
		</div>
<p>As said in my <a title="Internet Earning in 2009" href="http://www.icantinternet.org/2009/01/internet-earning-in-2009/" target="_self">2009 predictions</a>, the iPhone, and other mobile devices, will get a larger share in the tools your visitors use to visit your websites. So I suppose you will not be surprised when I tell you that it is very important to sure that your website is ready to receive your mobile customers.</p>
<p>[ad]The first step in this, is to let your webpage recognize if it is being visited by an iPhone. The best way to do this is by checking on the &#8220;user agent string&#8221;. For the not-knowers: this is a string of information of itself and its system that the browser sends to the webserver. In case of an iPhone, the user agent string looks something like this, depending on the language, the firmwareversion, and the country of origin:</p>
<p style="padding-left: 30px;">- Mozilla/5.0 (iPhone; U; XXXXX like Mac OS X; en) AppleWebKit/420+(KHTML, like Gecko) Version/3.0 Mobile/241 Safari/419.3</p>
<p style="padding-left: 30px;">- Mozilla/5.0 (iPhone; U; CPU like Mac OS X; en) AppleWebKit/420+(KHTML, like Gecko) Version/3.0 Mobile/21A537a Safari/419.3</p>
<p>This user agent string can easily be used to detect if your webpage visitor is using an iPhone or a regular browser. The following short pieces of code return the user agent string, and show it in your webpage:</p>
<p>JavaScript:</p>
<p style="padding-left: 30px;">&lt;script type=&#8221;text/javascript&#8221;&gt;</p>
<p style="padding-left: 30px;">document.write(navigator.userAgent);</p>
<p style="padding-left: 30px;">&lt;/script&gt;</p>
<p>ASP:</p>
<p style="padding-left: 30px;">&lt;%=Request.ServerVariables(&#8220;HTTP_USER_AGENT&#8221;)%&gt;</p>
<p>PHP:</p>
<p style="padding-left: 30px;">&lt;?php</p>
<p style="padding-left: 30px;">eco $_SERVER['HTTP_USER_AGENT'];</p>
<p style="padding-left: 30px;">?&gt;</p>
<p style="padding-left: 30px;"> </p>
<p>As you may or may not know, once you can determine the type of browser being used, it is rather simple to forward Mobile Safari to the correct, iPhone optimized index page (perhaps called iphone_index.html or something):</p>
<p>Javascript:</p>
<p style="padding-left: 30px;">&lt;html&gt;</p>
<p style="padding-left: 30px;">&lt;head&gt;</p>
<p style="padding-left: 30px;">&lt;script type=&#8221;text/javascript&#8221;&gt;</p>
<p style="padding-left: 30px;">window.onload=function(){</p>
<p style="padding-left: 30px;">var agent=navigator.userAgent.toLowerCase();</p>
<p style="padding-left: 30px;">var is_iphone=agent.indexOf(&#8220;ipone&#8221;) !=-1;</p>
<p style="padding-left: 30px;">if(is_iphone){</p>
<p style="padding-left: 60px;">window.location=&#8221;iphone_index.html&#8221;</p>
<p style="padding-left: 30px;">}else{</p>
<p style="padding-left: 60px;">window.location=&#8221;other_index.html&#8221;;</p>
<p style="padding-left: 30px;">}</p>
<p style="padding-left: 30px;">}</p>
<p style="padding-left: 30px;">&lt;/script&gt;</p>
<p style="padding-left: 30px;">&lt;body&gt;</p>
<p style="padding-left: 30px;">&lt;/body&gt;</p>
<p style="padding-left: 30px;">&lt;/html&gt;</p>
<p>ASP:</p>
<p style="padding-left: 30px;">&lt;%</p>
<p style="padding-left: 30px;">useragent = Request.ServerVariables(&#8220;HTTP_USER_AGENT&#8221;)</p>
<p style="padding-left: 30px;">if instr(useragent, &#8220;iphone&#8221;) &gt; 0 then</p>
<p style="padding-left: 30px;">response.redirect(&#8220;iphone_index.html&#8221;)</p>
<p style="padding-left: 30px;">else</p>
<p style="padding-left: 30px;">response.redirect(&#8220;regular_index.html&#8221;)</p>
<p style="padding-left: 30px;">end if</p>
<p style="padding-left: 30px;">%&gt;</p>
<p>PHP:</p>
<p style="padding-left: 30px;">&lt;?php</p>
<p style="padding-left: 30px;">$useragent= $_SERVER['HTTP_USER_AGENT'];</p>
<p style="padding-left: 30px;">if(strpos($useragent, &#8216;iphone&#8217; &gt; 0) {</p>
<p style="padding-left: 60px;">header(&#8220;Location: iphone_index.html&#8221;);</p>
<p style="padding-left: 30px;">}else{</p>
<p style="padding-left: 60px;">header(&#8220;Location: regular_index.html&#8221;);</p>
<p style="padding-left: 30px;">}</p>
<p style="padding-left: 30px;">?&gt;</p>
<p>Of course, once you have this script in one of these languages to check if it is an iPhone, it can easily be extended to check for other types of browsers, and create optimized indexpages for those too.</p>
<p>Happy coding! <img src='http://www.icantinternet.org/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p>
<p style="padding-left: 30px;"> </p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-bg-shr">
<ul class="socials">
		<li class="shr-blogengage">
			<a href="http://www.blogengage.com/submit.php?url=http://www.icantinternet.org/2009/01/recognizing-the-iphone-for-webpages/" rel="" class="external" title="Engage with this article!">Engage with this article!</a>
		</li>
		<li class="shr-comfeed">
			<a href="http://www.icantinternet.org/2009/01/recognizing-the-iphone-for-webpages/feed" rel="" 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://www.icantinternet.org/2009/01/recognizing-the-iphone-for-webpages/&amp;title=Recognizing+the+iPhone+for+webpages" rel="" 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://www.icantinternet.org/2009/01/recognizing-the-iphone-for-webpages/&amp;title=Recognizing+the+iPhone+for+webpages" rel="" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://www.icantinternet.org/2009/01/recognizing-the-iphone-for-webpages/&amp;t=Recognizing+the+iPhone+for+webpages" rel="" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-friendfeed">
			<a href="http://www.friendfeed.com/share?title=Recognizing+the+iPhone+for+webpages&amp;link=http://www.icantinternet.org/2009/01/recognizing-the-iphone-for-webpages/" rel="" class="external" title="Share this on FriendFeed">Share this on FriendFeed</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://www.icantinternet.org/2009/01/recognizing-the-iphone-for-webpages/&amp;imageurl=" rel="" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-hyves">
			<a href="http://www.hyves.nl/profilemanage/add/tips/?name=Recognizing+the+iPhone+for+webpages&amp;text=As%20said%20in%20my%202009%20predictions%2C%20the%20iPhone%2C%20and%20other%20mobile%20devices%2C%20will%20get%20a%20larger%20share%20in%20the%20tools%20your%20visitors%20use%20to%20visit%20your%20websites.%20So%20I%20suppose%20you%20will%20not%20be%20surprised%20when%20I%20tell%20you%20that%20it%20is%20very%20important%20to%20sure%20that%20your%20website%20is%20ready%20to%20receive%20your%20mobile%20customers.%0D%0A+-+http://www.icantinternet.org/2009/01/recognizing-the-iphone-for-webpages/&amp;rating=5" rel="" class="external" title="Share this on Hyves">Share this on Hyves</a>
		</li>
		<li class="shr-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://www.icantinternet.org/2009/01/recognizing-the-iphone-for-webpages/&amp;title=Recognizing+the+iPhone+for+webpages&amp;summary=As%20said%20in%20my%202009%20predictions%2C%20the%20iPhone%2C%20and%20other%20mobile%20devices%2C%20will%20get%20a%20larger%20share%20in%20the%20tools%20your%20visitors%20use%20to%20visit%20your%20websites.%20So%20I%20suppose%20you%20will%20not%20be%20surprised%20when%20I%20tell%20you%20that%20it%20is%20very%20important%20to%20sure%20that%20your%20website%20is%20ready%20to%20receive%20your%20mobile%20customers.%0D%0A&amp;source=iCan&#039;t Internet" rel="" class="external" title="Share this on LinkedIn">Share this on LinkedIn</a>
		</li>
		<li class="shr-misterwong">
			<a href="http://www.mister-wong.com/addurl/?bm_url=http://www.icantinternet.org/2009/01/recognizing-the-iphone-for-webpages/&amp;bm_description=Recognizing+the+iPhone+for+webpages&amp;plugin=sexybookmarks" rel="" 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://www.icantinternet.org/2009/01/recognizing-the-iphone-for-webpages/&amp;title=Recognizing+the+iPhone+for+webpages" rel="" class="external" title="Share this on Mixx">Share this on Mixx</a>
		</li>
		<li class="shr-myspace">
			<a href="http://www.myspace.com/Modules/PostTo/Pages/?u=http://www.icantinternet.org/2009/01/recognizing-the-iphone-for-webpages/&amp;t=Recognizing+the+iPhone+for+webpages" rel="" class="external" title="Post this to MySpace">Post this to MySpace</a>
		</li>
		<li class="shr-pingfm">
			<a href="http://ping.fm/ref/?link=http://www.icantinternet.org/2009/01/recognizing-the-iphone-for-webpages/&amp;title=Recognizing+the+iPhone+for+webpages&amp;body=As%20said%20in%20my%202009%20predictions%2C%20the%20iPhone%2C%20and%20other%20mobile%20devices%2C%20will%20get%20a%20larger%20share%20in%20the%20tools%20your%20visitors%20use%20to%20visit%20your%20websites.%20So%20I%20suppose%20you%20will%20not%20be%20surprised%20when%20I%20tell%20you%20that%20it%20is%20very%20important%20to%20sure%20that%20your%20website%20is%20ready%20to%20receive%20your%20mobile%20customers.%0D%0A" rel="" class="external" title="Ping this on Ping.fm">Ping this on Ping.fm</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://www.icantinternet.org/2009/01/recognizing-the-iphone-for-webpages/&amp;title=Recognizing+the+iPhone+for+webpages" rel="" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-squidoo">
			<a href="http://www.squidoo.com/lensmaster/bookmark?http://www.icantinternet.org/2009/01/recognizing-the-iphone-for-webpages/" rel="" class="external" title="Add to a lense on Squidoo">Add to a lense on Squidoo</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://www.icantinternet.org/2009/01/recognizing-the-iphone-for-webpages/&amp;title=Recognizing+the+iPhone+for+webpages" rel="" 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://www.icantinternet.org/2009/01/recognizing-the-iphone-for-webpages/" rel="" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-tumblr">
			<a href="http://www.tumblr.com/share?v=3&amp;u=http%3A%2F%2Fwww.icantinternet.org%2F2009%2F01%2Frecognizing-the-iphone-for-webpages%2F&amp;t=Recognizing+the+iPhone+for+webpages" rel="" class="external" title="Share this on Tumblr">Share this on Tumblr</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=Recognizing+the+iPhone+for+webpages+-+http://b2l.me/b2n5f&amp;source=shareaholic" rel="" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-yahoobuzz">
			<a href="http://buzz.yahoo.com/submit/?submitUrl=http://www.icantinternet.org/2009/01/recognizing-the-iphone-for-webpages/&amp;submitHeadline=Recognizing+the+iPhone+for+webpages&amp;submitSummary=As%20said%20in%20my%202009%20predictions%2C%20the%20iPhone%2C%20and%20other%20mobile%20devices%2C%20will%20get%20a%20larger%20share%20in%20the%20tools%20your%20visitors%20use%20to%20visit%20your%20websites.%20So%20I%20suppose%20you%20will%20not%20be%20surprised%20when%20I%20tell%20you%20that%20it%20is%20very%20important%20to%20sure%20that%20your%20website%20is%20ready%20to%20receive%20your%20mobile%20customers.%0D%0A&amp;submitCategory=science&amp;submitAssetType=text" rel="" class="external" title="Buzz up!">Buzz up!</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>



<p>Related posts:<ol><li><a href='http://www.icantinternet.org/2008/12/iphone-webtricks/' rel='bookmark' title='Permanent Link: iPhone Webtricks'>iPhone Webtricks</a> <small>When creating a website specifically aimed at the iPhone, there...</small></li>
<li><a href='http://www.icantinternet.org/2009/01/20-iphone-apps-for-bloggers-and-such/' rel='bookmark' title='Permanent Link: 20+ iPhone Apps for Bloggers and such'>20+ iPhone Apps for Bloggers and such</a> <small>While Digging away through my shouts on Digg, I came...</small></li>
<li><a href='http://www.icantinternet.org/2008/04/jumpstart-ajax-tutorial/' rel='bookmark' title='Permanent Link: Jumpstart AJAX Tutorial'>Jumpstart AJAX Tutorial</a> <small>Days I&#8217;ve been searching after a decent, small, simple tutorial,...</small></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.icantinternet.org/2009/01/recognizing-the-iphone-for-webpages/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Web app icon for iPhone</title>
		<link>http://www.icantinternet.org/2009/01/web-app-icon-for-iphone/</link>
		<comments>http://www.icantinternet.org/2009/01/web-app-icon-for-iphone/#comments</comments>
		<pubDate>Sun, 18 Jan 2009 12:29:46 +0000</pubDate>
		<dc:creator>Bjorn</dc:creator>
				<category><![CDATA[Beginners]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[Webdevelopment]]></category>
		<category><![CDATA[Webmaster]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[Webapp]]></category>

		<guid isPermaLink="false">http://www.icantinternet.org/?p=122</guid>
		<description><![CDATA[By default, when you add a bookmark to a page to your homescreen (by tapping bookmark-&#62;add to homescreen), your iPhone will create a button for the webapp by itself. [ad]This is miniature version of the page you were on when you created the bookmark. There is a way however, to make the iPhone show the [...]


Related posts:<ol><li><a href='http://www.icantinternet.org/2008/12/iphone-webtricks/' rel='bookmark' title='Permanent Link: iPhone Webtricks'>iPhone Webtricks</a> <small>When creating a website specifically aimed at the iPhone, there...</small></li>
<li><a href='http://www.icantinternet.org/2009/01/changing-the-iphone-homescreen-layout/' rel='bookmark' title='Permanent Link: Changing the iPhone Homescreen layout.'>Changing the iPhone Homescreen layout.</a> <small>When you finally lay your hands on your iPhone, you...</small></li>
<li><a href='http://www.icantinternet.org/2009/01/20-iphone-apps-for-bloggers-and-such/' rel='bookmark' title='Permanent Link: 20+ iPhone Apps for Bloggers and such'>20+ iPhone Apps for Bloggers and such</a> <small>While Digging away through my shouts on Digg, I came...</small></li>
</ol>]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.icantinternet.org%2F2009%2F01%2Fweb-app-icon-for-iphone%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.icantinternet.org%2F2009%2F01%2Fweb-app-icon-for-iphone%2F&amp;source=icantinternet&amp;style=normal&amp;service=ow.ly" height="61" width="50" /><br />
			</a>
		</div>
<p>By default, when you add a bookmark to a page to your homescreen (by tapping bookmark-&gt;add to homescreen), your iPhone will create a button for the webapp by itself.<br />
[ad]This is miniature version of the page you were on when you created the bookmark.</p>
<p>There is a way however, to make the iPhone show the icon on the homescreen that YOU, being the webdeveloper, want:<img class="alignright" title="Iphone Homescreen" src="http://upload.wikimedia.org/wikipedia/en/1/11/IPhonehomescreen.PNG" alt="" width="80" height="120" /></p>
<p>- Use an imaging program (such as <a title="The Gimp" href="http://www.gimp.org" target="_blank">The Gimp</a>)to create an image of 57&#215;57 pixels.</p>
<p>- Save the image as icon.png, and upload this image to the root folder of your website.</p>
<p>- Add the code below to the Head section of your webpage:</p>
<p>&lt;link rel=&#8221;apple-touch-icon&#8221; href=&#8221;http://www.icantinternet.org/icon.png&#8221;&gt;</p>
<p>Do you want to learn to <a href="http://6f8456qppcfj4td605knu5fosd.hop.clickbank.net/?tid=IPHONEANP">create iphone apps with no programming experience</a>? Check out <a href="http://6f8456qppcfj4td605knu5fosd.hop.clickbank.net/?tid=IPHONEANP">this link</a>!</p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-bg-shr">
<ul class="socials">
		<li class="shr-blogengage">
			<a href="http://www.blogengage.com/submit.php?url=http://www.icantinternet.org/2009/01/web-app-icon-for-iphone/" rel="" class="external" title="Engage with this article!">Engage with this article!</a>
		</li>
		<li class="shr-comfeed">
			<a href="http://www.icantinternet.org/2009/01/web-app-icon-for-iphone/feed" rel="" 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://www.icantinternet.org/2009/01/web-app-icon-for-iphone/&amp;title=Web+app+icon+for+iPhone" rel="" 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://www.icantinternet.org/2009/01/web-app-icon-for-iphone/&amp;title=Web+app+icon+for+iPhone" rel="" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://www.icantinternet.org/2009/01/web-app-icon-for-iphone/&amp;t=Web+app+icon+for+iPhone" rel="" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-friendfeed">
			<a href="http://www.friendfeed.com/share?title=Web+app+icon+for+iPhone&amp;link=http://www.icantinternet.org/2009/01/web-app-icon-for-iphone/" rel="" class="external" title="Share this on FriendFeed">Share this on FriendFeed</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://www.icantinternet.org/2009/01/web-app-icon-for-iphone/&amp;imageurl=" rel="" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-hyves">
			<a href="http://www.hyves.nl/profilemanage/add/tips/?name=Web+app+icon+for+iPhone&amp;text=By%20default%2C%20when%20you%20add%20a%20bookmark%20to%20a%20page%20to%20your%20homescreen%20%28by%20tapping%20bookmark-%26gt%3Badd%20to%20homescreen%29%2C%20your%20iPhone%20will%20create%20a%20button%20for%20the%20webapp%20by%20itself.%0D%0A%5Bad%5DThis%20is%20miniature%20version%20of%20the%20page%20you%20were%20on%20when%20you%20created%20the%20bookmark.%0D%0A%0D%0AThere%20is%20a%20way%20however%2C%20to%20make%20the%20iPhone+-+http://www.icantinternet.org/2009/01/web-app-icon-for-iphone/&amp;rating=5" rel="" class="external" title="Share this on Hyves">Share this on Hyves</a>
		</li>
		<li class="shr-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://www.icantinternet.org/2009/01/web-app-icon-for-iphone/&amp;title=Web+app+icon+for+iPhone&amp;summary=By%20default%2C%20when%20you%20add%20a%20bookmark%20to%20a%20page%20to%20your%20homescreen%20%28by%20tapping%20bookmark-%26gt%3Badd%20to%20homescreen%29%2C%20your%20iPhone%20will%20create%20a%20button%20for%20the%20webapp%20by%20itself.%0D%0A%5Bad%5DThis%20is%20miniature%20version%20of%20the%20page%20you%20were%20on%20when%20you%20created%20the%20bookmark.%0D%0A%0D%0AThere%20is%20a%20way%20however%2C%20to%20make%20the%20iPhone&amp;source=iCan&#039;t Internet" rel="" class="external" title="Share this on LinkedIn">Share this on LinkedIn</a>
		</li>
		<li class="shr-misterwong">
			<a href="http://www.mister-wong.com/addurl/?bm_url=http://www.icantinternet.org/2009/01/web-app-icon-for-iphone/&amp;bm_description=Web+app+icon+for+iPhone&amp;plugin=sexybookmarks" rel="" 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://www.icantinternet.org/2009/01/web-app-icon-for-iphone/&amp;title=Web+app+icon+for+iPhone" rel="" class="external" title="Share this on Mixx">Share this on Mixx</a>
		</li>
		<li class="shr-myspace">
			<a href="http://www.myspace.com/Modules/PostTo/Pages/?u=http://www.icantinternet.org/2009/01/web-app-icon-for-iphone/&amp;t=Web+app+icon+for+iPhone" rel="" class="external" title="Post this to MySpace">Post this to MySpace</a>
		</li>
		<li class="shr-pingfm">
			<a href="http://ping.fm/ref/?link=http://www.icantinternet.org/2009/01/web-app-icon-for-iphone/&amp;title=Web+app+icon+for+iPhone&amp;body=By%20default%2C%20when%20you%20add%20a%20bookmark%20to%20a%20page%20to%20your%20homescreen%20%28by%20tapping%20bookmark-%26gt%3Badd%20to%20homescreen%29%2C%20your%20iPhone%20will%20create%20a%20button%20for%20the%20webapp%20by%20itself.%0D%0A%5Bad%5DThis%20is%20miniature%20version%20of%20the%20page%20you%20were%20on%20when%20you%20created%20the%20bookmark.%0D%0A%0D%0AThere%20is%20a%20way%20however%2C%20to%20make%20the%20iPhone" rel="" class="external" title="Ping this on Ping.fm">Ping this on Ping.fm</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://www.icantinternet.org/2009/01/web-app-icon-for-iphone/&amp;title=Web+app+icon+for+iPhone" rel="" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-squidoo">
			<a href="http://www.squidoo.com/lensmaster/bookmark?http://www.icantinternet.org/2009/01/web-app-icon-for-iphone/" rel="" class="external" title="Add to a lense on Squidoo">Add to a lense on Squidoo</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://www.icantinternet.org/2009/01/web-app-icon-for-iphone/&amp;title=Web+app+icon+for+iPhone" rel="" 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://www.icantinternet.org/2009/01/web-app-icon-for-iphone/" rel="" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-tumblr">
			<a href="http://www.tumblr.com/share?v=3&amp;u=http%3A%2F%2Fwww.icantinternet.org%2F2009%2F01%2Fweb-app-icon-for-iphone%2F&amp;t=Web+app+icon+for+iPhone" rel="" class="external" title="Share this on Tumblr">Share this on Tumblr</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=Web+app+icon+for+iPhone+-+http://b2l.me/b2nda&amp;source=shareaholic" rel="" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-yahoobuzz">
			<a href="http://buzz.yahoo.com/submit/?submitUrl=http://www.icantinternet.org/2009/01/web-app-icon-for-iphone/&amp;submitHeadline=Web+app+icon+for+iPhone&amp;submitSummary=By%20default%2C%20when%20you%20add%20a%20bookmark%20to%20a%20page%20to%20your%20homescreen%20%28by%20tapping%20bookmark-%26gt%3Badd%20to%20homescreen%29%2C%20your%20iPhone%20will%20create%20a%20button%20for%20the%20webapp%20by%20itself.%0D%0A%5Bad%5DThis%20is%20miniature%20version%20of%20the%20page%20you%20were%20on%20when%20you%20created%20the%20bookmark.%0D%0A%0D%0AThere%20is%20a%20way%20however%2C%20to%20make%20the%20iPhone&amp;submitCategory=science&amp;submitAssetType=text" rel="" class="external" title="Buzz up!">Buzz up!</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>



<p>Related posts:<ol><li><a href='http://www.icantinternet.org/2008/12/iphone-webtricks/' rel='bookmark' title='Permanent Link: iPhone Webtricks'>iPhone Webtricks</a> <small>When creating a website specifically aimed at the iPhone, there...</small></li>
<li><a href='http://www.icantinternet.org/2009/01/changing-the-iphone-homescreen-layout/' rel='bookmark' title='Permanent Link: Changing the iPhone Homescreen layout.'>Changing the iPhone Homescreen layout.</a> <small>When you finally lay your hands on your iPhone, you...</small></li>
<li><a href='http://www.icantinternet.org/2009/01/20-iphone-apps-for-bloggers-and-such/' rel='bookmark' title='Permanent Link: 20+ iPhone Apps for Bloggers and such'>20+ iPhone Apps for Bloggers and such</a> <small>While Digging away through my shouts on Digg, I came...</small></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.icantinternet.org/2009/01/web-app-icon-for-iphone/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>20+ iPhone Apps for Bloggers and such</title>
		<link>http://www.icantinternet.org/2009/01/20-iphone-apps-for-bloggers-and-such/</link>
		<comments>http://www.icantinternet.org/2009/01/20-iphone-apps-for-bloggers-and-such/#comments</comments>
		<pubDate>Thu, 08 Jan 2009 07:11:38 +0000</pubDate>
		<dc:creator>Bjorn</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[Webdevelopment]]></category>
		<category><![CDATA[Webmaster]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[internet explorer]]></category>
		<category><![CDATA[iPhone apps]]></category>
		<category><![CDATA[webdesign]]></category>
		<category><![CDATA[Website Design]]></category>

		<guid isPermaLink="false">http://www.icantinternet.org/?p=88</guid>
		<description><![CDATA[While Digging away through my shouts on Digg, I came across this very interesting article on noupe.com, listing 21 iPhone apps that can help you boost your productivity if you are a blogger, designer or freelancer. [ad]As an example, there are colorpickers in the list, which will give you the colorvalue of your selection in [...]


Related posts:<ol><li><a href='http://www.icantinternet.org/2008/12/iphone-webtricks/' rel='bookmark' title='Permanent Link: iPhone Webtricks'>iPhone Webtricks</a> <small>When creating a website specifically aimed at the iPhone, there...</small></li>
<li><a href='http://www.icantinternet.org/2009/01/web-app-icon-for-iphone/' rel='bookmark' title='Permanent Link: Web app icon for iPhone'>Web app icon for iPhone</a> <small>By default, when you add a bookmark to a page...</small></li>
<li><a href='http://www.icantinternet.org/2009/01/internet-earning-in-2009/' rel='bookmark' title='Permanent Link: Internet earning in 2009'>Internet earning in 2009</a> <small>Many people are wonderingen in these economical bad times, will...</small></li>
</ol>]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.icantinternet.org%2F2009%2F01%2F20-iphone-apps-for-bloggers-and-such%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.icantinternet.org%2F2009%2F01%2F20-iphone-apps-for-bloggers-and-such%2F&amp;source=icantinternet&amp;style=normal&amp;service=ow.ly" height="61" width="50" /><br />
			</a>
		</div>
<p>While Digging away through my shouts on Digg, I came across this very interesting article on <a href="http://www.noupe.com">noupe.com</a>, listing 21 iPhone apps that can help you boost your productivity if you are a blogger, designer or freelancer.</p>
<p>[ad]As an example, there are colorpickers in the list, which will give you the colorvalue of your selection in different notations, there is the <a href="http://phobos.apple.com/WebObjects/MZStore.woa/wa/viewSoftware?id=285073074&amp;mt=8">wordpress app</a>, which will let you post new articles on your <a href="http://www.wordpress.com">wordpress.com</a> or selfhosted wordpress blog, there are texteditors in different flavors and shapes, and there even is a <a href="http://phobos.apple.com/WebObjects/MZStore.woa/wa/viewSoftware?id=284984448&amp;mt=8">VNC interface</a>, so you can use your iPhone to work on your Mac, Windows or even Linux machine.<br />
You can find the article here: <a href="http://www.noupe.com/tools/top-20-iphone-apps-for-bloggers-designers-freelancers.html">http://www.noupe.com/tools/top-20-iphone-apps-for-bloggers-designers-freelancers.html</a></p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-bg-shr">
<ul class="socials">
		<li class="shr-blogengage">
			<a href="http://www.blogengage.com/submit.php?url=http://www.icantinternet.org/2009/01/20-iphone-apps-for-bloggers-and-such/" rel="" class="external" title="Engage with this article!">Engage with this article!</a>
		</li>
		<li class="shr-comfeed">
			<a href="http://www.icantinternet.org/2009/01/20-iphone-apps-for-bloggers-and-such/feed" rel="" 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://www.icantinternet.org/2009/01/20-iphone-apps-for-bloggers-and-such/&amp;title=20%2B+iPhone+Apps+for+Bloggers+and+such" rel="" 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://www.icantinternet.org/2009/01/20-iphone-apps-for-bloggers-and-such/&amp;title=20%2B+iPhone+Apps+for+Bloggers+and+such" rel="" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://www.icantinternet.org/2009/01/20-iphone-apps-for-bloggers-and-such/&amp;t=20%2B+iPhone+Apps+for+Bloggers+and+such" rel="" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-friendfeed">
			<a href="http://www.friendfeed.com/share?title=20%2B+iPhone+Apps+for+Bloggers+and+such&amp;link=http://www.icantinternet.org/2009/01/20-iphone-apps-for-bloggers-and-such/" rel="" class="external" title="Share this on FriendFeed">Share this on FriendFeed</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://www.icantinternet.org/2009/01/20-iphone-apps-for-bloggers-and-such/&amp;imageurl=" rel="" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-hyves">
			<a href="http://www.hyves.nl/profilemanage/add/tips/?name=20%2B+iPhone+Apps+for+Bloggers+and+such&amp;text=While%20Digging%20away%20through%20my%20shouts%20on%20Digg%2C%20I%20came%20across%20this%20very%20interesting%20article%20on%20noupe.com%2C%20listing%2021%20iPhone%20apps%20that%20can%20help%20you%20boost%20your%20productivity%20if%20you%20are%20a%20blogger%2C%20designer%20or%20freelancer.%0D%0A%0D%0A%5Bad%5DAs%20an%20example%2C%20there%20are%20colorpickers%20in%20the%20list%2C%20which%20will%20give%20you%20the%20col+-+http://www.icantinternet.org/2009/01/20-iphone-apps-for-bloggers-and-such/&amp;rating=5" rel="" class="external" title="Share this on Hyves">Share this on Hyves</a>
		</li>
		<li class="shr-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://www.icantinternet.org/2009/01/20-iphone-apps-for-bloggers-and-such/&amp;title=20%2B+iPhone+Apps+for+Bloggers+and+such&amp;summary=While%20Digging%20away%20through%20my%20shouts%20on%20Digg%2C%20I%20came%20across%20this%20very%20interesting%20article%20on%20noupe.com%2C%20listing%2021%20iPhone%20apps%20that%20can%20help%20you%20boost%20your%20productivity%20if%20you%20are%20a%20blogger%2C%20designer%20or%20freelancer.%0D%0A%0D%0A%5Bad%5DAs%20an%20example%2C%20there%20are%20colorpickers%20in%20the%20list%2C%20which%20will%20give%20you%20the%20col&amp;source=iCan&#039;t Internet" rel="" class="external" title="Share this on LinkedIn">Share this on LinkedIn</a>
		</li>
		<li class="shr-misterwong">
			<a href="http://www.mister-wong.com/addurl/?bm_url=http://www.icantinternet.org/2009/01/20-iphone-apps-for-bloggers-and-such/&amp;bm_description=20%2B+iPhone+Apps+for+Bloggers+and+such&amp;plugin=sexybookmarks" rel="" 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://www.icantinternet.org/2009/01/20-iphone-apps-for-bloggers-and-such/&amp;title=20%2B+iPhone+Apps+for+Bloggers+and+such" rel="" class="external" title="Share this on Mixx">Share this on Mixx</a>
		</li>
		<li class="shr-myspace">
			<a href="http://www.myspace.com/Modules/PostTo/Pages/?u=http://www.icantinternet.org/2009/01/20-iphone-apps-for-bloggers-and-such/&amp;t=20%2B+iPhone+Apps+for+Bloggers+and+such" rel="" class="external" title="Post this to MySpace">Post this to MySpace</a>
		</li>
		<li class="shr-pingfm">
			<a href="http://ping.fm/ref/?link=http://www.icantinternet.org/2009/01/20-iphone-apps-for-bloggers-and-such/&amp;title=20%2B+iPhone+Apps+for+Bloggers+and+such&amp;body=While%20Digging%20away%20through%20my%20shouts%20on%20Digg%2C%20I%20came%20across%20this%20very%20interesting%20article%20on%20noupe.com%2C%20listing%2021%20iPhone%20apps%20that%20can%20help%20you%20boost%20your%20productivity%20if%20you%20are%20a%20blogger%2C%20designer%20or%20freelancer.%0D%0A%0D%0A%5Bad%5DAs%20an%20example%2C%20there%20are%20colorpickers%20in%20the%20list%2C%20which%20will%20give%20you%20the%20col" rel="" class="external" title="Ping this on Ping.fm">Ping this on Ping.fm</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://www.icantinternet.org/2009/01/20-iphone-apps-for-bloggers-and-such/&amp;title=20%2B+iPhone+Apps+for+Bloggers+and+such" rel="" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-squidoo">
			<a href="http://www.squidoo.com/lensmaster/bookmark?http://www.icantinternet.org/2009/01/20-iphone-apps-for-bloggers-and-such/" rel="" class="external" title="Add to a lense on Squidoo">Add to a lense on Squidoo</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://www.icantinternet.org/2009/01/20-iphone-apps-for-bloggers-and-such/&amp;title=20%2B+iPhone+Apps+for+Bloggers+and+such" rel="" 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://www.icantinternet.org/2009/01/20-iphone-apps-for-bloggers-and-such/" rel="" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-tumblr">
			<a href="http://www.tumblr.com/share?v=3&amp;u=http%3A%2F%2Fwww.icantinternet.org%2F2009%2F01%2F20-iphone-apps-for-bloggers-and-such%2F&amp;t=20%2B+iPhone+Apps+for+Bloggers+and+such" rel="" class="external" title="Share this on Tumblr">Share this on Tumblr</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=20%2B+iPhone+Apps+for+Bloggers+and+such+-+http://b2l.me/b2f3c&amp;source=shareaholic" rel="" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-yahoobuzz">
			<a href="http://buzz.yahoo.com/submit/?submitUrl=http://www.icantinternet.org/2009/01/20-iphone-apps-for-bloggers-and-such/&amp;submitHeadline=20%2B+iPhone+Apps+for+Bloggers+and+such&amp;submitSummary=While%20Digging%20away%20through%20my%20shouts%20on%20Digg%2C%20I%20came%20across%20this%20very%20interesting%20article%20on%20noupe.com%2C%20listing%2021%20iPhone%20apps%20that%20can%20help%20you%20boost%20your%20productivity%20if%20you%20are%20a%20blogger%2C%20designer%20or%20freelancer.%0D%0A%0D%0A%5Bad%5DAs%20an%20example%2C%20there%20are%20colorpickers%20in%20the%20list%2C%20which%20will%20give%20you%20the%20col&amp;submitCategory=science&amp;submitAssetType=text" rel="" class="external" title="Buzz up!">Buzz up!</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>



<p>Related posts:<ol><li><a href='http://www.icantinternet.org/2008/12/iphone-webtricks/' rel='bookmark' title='Permanent Link: iPhone Webtricks'>iPhone Webtricks</a> <small>When creating a website specifically aimed at the iPhone, there...</small></li>
<li><a href='http://www.icantinternet.org/2009/01/web-app-icon-for-iphone/' rel='bookmark' title='Permanent Link: Web app icon for iPhone'>Web app icon for iPhone</a> <small>By default, when you add a bookmark to a page...</small></li>
<li><a href='http://www.icantinternet.org/2009/01/internet-earning-in-2009/' rel='bookmark' title='Permanent Link: Internet earning in 2009'>Internet earning in 2009</a> <small>Many people are wonderingen in these economical bad times, will...</small></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.icantinternet.org/2009/01/20-iphone-apps-for-bloggers-and-such/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>iPhone Webtricks</title>
		<link>http://www.icantinternet.org/2008/12/iphone-webtricks/</link>
		<comments>http://www.icantinternet.org/2008/12/iphone-webtricks/#comments</comments>
		<pubDate>Tue, 30 Dec 2008 22:08:28 +0000</pubDate>
		<dc:creator>Bjorn</dc:creator>
				<category><![CDATA[Adsense]]></category>
		<category><![CDATA[Beginners]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[Pay-Per-Click]]></category>
		<category><![CDATA[Webdevelopment]]></category>
		<category><![CDATA[Webmaster]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[webdesign]]></category>

		<guid isPermaLink="false">http://www.icantinternet.org/?p=65</guid>
		<description><![CDATA[When creating a website specifically aimed at the iPhone, there are some cool things you can do to improve your visitor&#8217;s iPhone web-experience. [ad] Show a movie It&#8217;s very easy to add a movie to a webpage. But, if you put an image in there instead, and link to the movie, the movie will open [...]


Related posts:<ol><li><a href='http://www.icantinternet.org/2009/01/recognizing-the-iphone-for-webpages/' rel='bookmark' title='Permanent Link: Recognizing the iPhone for webpages'>Recognizing the iPhone for webpages</a> <small>As said in my 2009 predictions, the iPhone, and other...</small></li>
<li><a href='http://www.icantinternet.org/2009/01/web-app-icon-for-iphone/' rel='bookmark' title='Permanent Link: Web app icon for iPhone'>Web app icon for iPhone</a> <small>By default, when you add a bookmark to a page...</small></li>
<li><a href='http://www.icantinternet.org/2009/01/20-iphone-apps-for-bloggers-and-such/' rel='bookmark' title='Permanent Link: 20+ iPhone Apps for Bloggers and such'>20+ iPhone Apps for Bloggers and such</a> <small>While Digging away through my shouts on Digg, I came...</small></li>
</ol>]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.icantinternet.org%2F2008%2F12%2Fiphone-webtricks%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.icantinternet.org%2F2008%2F12%2Fiphone-webtricks%2F&amp;source=icantinternet&amp;style=normal&amp;service=ow.ly" height="61" width="50" /><br />
			</a>
		</div>
<p>When creating a website specifically aimed at the iPhone, there are some cool things you can do to improve your visitor&#8217;s iPhone web-experience.<br />
[ad]<br />
<strong>Show a movie</strong><br />
It&#8217;s very easy to add a movie to a webpage. But, if you put an image in there instead, and link to the movie, the movie will open in the iPhone&#8217;s videoplayer instead of Safari.</p>
<p>&lt;embed src=&#8221;mymovie.jpg&#8221; href=&#8221;mymovie.mov&#8221; widt=&#8221;380&#8243; height=&#8221;290&#8243;&gt;</p>
<p><strong>Link to a telephonenumber</strong><br />
To add a link to a telephonenumber on a webpage, that will automatically be dialled when clicked, use this code:</p>
<p>&lt;a href=&#8221;tel:01234567890&#8243;&gt;Tel: 01234567890&lt;/a&gt;</p>
<p><strong>Hide the statusbar</strong><br />
Safari gives you the opportunity to automatically hide the statusbar when your webpage is being loaded:</p>
<p>&lt;script type=&#8221;text/javascript&#8221;&gt;<br />
window.onload=function(){<br />
window.scrollTo(0,1);<br />
}<br />
&lt;/script&gt;</p>
<p>Enjoy!</p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-bg-shr">
<ul class="socials">
		<li class="shr-blogengage">
			<a href="http://www.blogengage.com/submit.php?url=http://www.icantinternet.org/2008/12/iphone-webtricks/" rel="" class="external" title="Engage with this article!">Engage with this article!</a>
		</li>
		<li class="shr-comfeed">
			<a href="http://www.icantinternet.org/2008/12/iphone-webtricks/feed" rel="" 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://www.icantinternet.org/2008/12/iphone-webtricks/&amp;title=iPhone+Webtricks" rel="" 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://www.icantinternet.org/2008/12/iphone-webtricks/&amp;title=iPhone+Webtricks" rel="" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://www.icantinternet.org/2008/12/iphone-webtricks/&amp;t=iPhone+Webtricks" rel="" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-friendfeed">
			<a href="http://www.friendfeed.com/share?title=iPhone+Webtricks&amp;link=http://www.icantinternet.org/2008/12/iphone-webtricks/" rel="" class="external" title="Share this on FriendFeed">Share this on FriendFeed</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://www.icantinternet.org/2008/12/iphone-webtricks/&amp;imageurl=" rel="" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-hyves">
			<a href="http://www.hyves.nl/profilemanage/add/tips/?name=iPhone+Webtricks&amp;text=When%20creating%20a%20website%20specifically%20aimed%20at%20the%20iPhone%2C%20there%20are%20some%20cool%20things%20you%20can%20do%20to%20improve%20your%20visitor%27s%20iPhone%20web-experience.%0D%0A%5Bad%5D%0D%0AShow%20a%20movie%0D%0AIt%27s%20very%20easy%20to%20add%20a%20movie%20to%20a%20webpage.%20But%2C%20if%20you%20put%20an%20image%20in%20there%20instead%2C%20and%20link%20to%20the%20movie%2C%20the%20movie%20will%20open%20in%20t+-+http://www.icantinternet.org/2008/12/iphone-webtricks/&amp;rating=5" rel="" class="external" title="Share this on Hyves">Share this on Hyves</a>
		</li>
		<li class="shr-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://www.icantinternet.org/2008/12/iphone-webtricks/&amp;title=iPhone+Webtricks&amp;summary=When%20creating%20a%20website%20specifically%20aimed%20at%20the%20iPhone%2C%20there%20are%20some%20cool%20things%20you%20can%20do%20to%20improve%20your%20visitor%27s%20iPhone%20web-experience.%0D%0A%5Bad%5D%0D%0AShow%20a%20movie%0D%0AIt%27s%20very%20easy%20to%20add%20a%20movie%20to%20a%20webpage.%20But%2C%20if%20you%20put%20an%20image%20in%20there%20instead%2C%20and%20link%20to%20the%20movie%2C%20the%20movie%20will%20open%20in%20t&amp;source=iCan&#039;t Internet" rel="" class="external" title="Share this on LinkedIn">Share this on LinkedIn</a>
		</li>
		<li class="shr-misterwong">
			<a href="http://www.mister-wong.com/addurl/?bm_url=http://www.icantinternet.org/2008/12/iphone-webtricks/&amp;bm_description=iPhone+Webtricks&amp;plugin=sexybookmarks" rel="" 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://www.icantinternet.org/2008/12/iphone-webtricks/&amp;title=iPhone+Webtricks" rel="" class="external" title="Share this on Mixx">Share this on Mixx</a>
		</li>
		<li class="shr-myspace">
			<a href="http://www.myspace.com/Modules/PostTo/Pages/?u=http://www.icantinternet.org/2008/12/iphone-webtricks/&amp;t=iPhone+Webtricks" rel="" class="external" title="Post this to MySpace">Post this to MySpace</a>
		</li>
		<li class="shr-pingfm">
			<a href="http://ping.fm/ref/?link=http://www.icantinternet.org/2008/12/iphone-webtricks/&amp;title=iPhone+Webtricks&amp;body=When%20creating%20a%20website%20specifically%20aimed%20at%20the%20iPhone%2C%20there%20are%20some%20cool%20things%20you%20can%20do%20to%20improve%20your%20visitor%27s%20iPhone%20web-experience.%0D%0A%5Bad%5D%0D%0AShow%20a%20movie%0D%0AIt%27s%20very%20easy%20to%20add%20a%20movie%20to%20a%20webpage.%20But%2C%20if%20you%20put%20an%20image%20in%20there%20instead%2C%20and%20link%20to%20the%20movie%2C%20the%20movie%20will%20open%20in%20t" rel="" class="external" title="Ping this on Ping.fm">Ping this on Ping.fm</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://www.icantinternet.org/2008/12/iphone-webtricks/&amp;title=iPhone+Webtricks" rel="" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-squidoo">
			<a href="http://www.squidoo.com/lensmaster/bookmark?http://www.icantinternet.org/2008/12/iphone-webtricks/" rel="" class="external" title="Add to a lense on Squidoo">Add to a lense on Squidoo</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://www.icantinternet.org/2008/12/iphone-webtricks/&amp;title=iPhone+Webtricks" rel="" 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://www.icantinternet.org/2008/12/iphone-webtricks/" rel="" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-tumblr">
			<a href="http://www.tumblr.com/share?v=3&amp;u=http%3A%2F%2Fwww.icantinternet.org%2F2008%2F12%2Fiphone-webtricks%2F&amp;t=iPhone+Webtricks" rel="" class="external" title="Share this on Tumblr">Share this on Tumblr</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=iPhone+Webtricks+-+http://b2l.me/bz8cj&amp;source=shareaholic" rel="" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-yahoobuzz">
			<a href="http://buzz.yahoo.com/submit/?submitUrl=http://www.icantinternet.org/2008/12/iphone-webtricks/&amp;submitHeadline=iPhone+Webtricks&amp;submitSummary=When%20creating%20a%20website%20specifically%20aimed%20at%20the%20iPhone%2C%20there%20are%20some%20cool%20things%20you%20can%20do%20to%20improve%20your%20visitor%27s%20iPhone%20web-experience.%0D%0A%5Bad%5D%0D%0AShow%20a%20movie%0D%0AIt%27s%20very%20easy%20to%20add%20a%20movie%20to%20a%20webpage.%20But%2C%20if%20you%20put%20an%20image%20in%20there%20instead%2C%20and%20link%20to%20the%20movie%2C%20the%20movie%20will%20open%20in%20t&amp;submitCategory=science&amp;submitAssetType=text" rel="" class="external" title="Buzz up!">Buzz up!</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>



<p>Related posts:<ol><li><a href='http://www.icantinternet.org/2009/01/recognizing-the-iphone-for-webpages/' rel='bookmark' title='Permanent Link: Recognizing the iPhone for webpages'>Recognizing the iPhone for webpages</a> <small>As said in my 2009 predictions, the iPhone, and other...</small></li>
<li><a href='http://www.icantinternet.org/2009/01/web-app-icon-for-iphone/' rel='bookmark' title='Permanent Link: Web app icon for iPhone'>Web app icon for iPhone</a> <small>By default, when you add a bookmark to a page...</small></li>
<li><a href='http://www.icantinternet.org/2009/01/20-iphone-apps-for-bloggers-and-such/' rel='bookmark' title='Permanent Link: 20+ iPhone Apps for Bloggers and such'>20+ iPhone Apps for Bloggers and such</a> <small>While Digging away through my shouts on Digg, I came...</small></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.icantinternet.org/2008/12/iphone-webtricks/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Optimizing Internal Linking</title>
		<link>http://www.icantinternet.org/2008/12/optimizing-internal-linking/</link>
		<comments>http://www.icantinternet.org/2008/12/optimizing-internal-linking/#comments</comments>
		<pubDate>Wed, 10 Dec 2008 13:34:47 +0000</pubDate>
		<dc:creator>Bjorn</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[Webdevelopment]]></category>
		<category><![CDATA[Webmaster]]></category>

		<guid isPermaLink="false">http://www.icantinternet.org/?p=34</guid>
		<description><![CDATA[Good SEO starts with good linking tactiques. And good linking tactiques starts with internal linking. A first way to show to your visitors, and to Google what is important to you, and how your website is built, is by using good internal linking. Here are some internal linking tips: Use spiderable navigation. Either use text [...]


Related posts:<ol><li><a href='http://www.icantinternet.org/2008/12/optimizing-internal-linking-2/' rel='bookmark' title='Permanent Link: Optimizing Internal Linking'>Optimizing Internal Linking</a> <small>Good SEO starts with good linking tactiques. And good linking...</small></li>
<li><a href='http://www.icantinternet.org/2008/12/more-on-linking/' rel='bookmark' title='Permanent Link: More on linking'>More on linking</a> <small>1. Optimize your incoming links. Check out who is linking...</small></li>
<li><a href='http://www.icantinternet.org/2008/03/whats-this-pagerank-pr-all-about-3/' rel='bookmark' title='Permanent Link: What&#8217;s this PageRank (PR) all about?'>What&#8217;s this PageRank (PR) all about?</a> <small>PageRank is one of many methods that Google uses to...</small></li>
</ol>]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.icantinternet.org%2F2008%2F12%2Foptimizing-internal-linking%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.icantinternet.org%2F2008%2F12%2Foptimizing-internal-linking%2F&amp;source=icantinternet&amp;style=normal&amp;service=ow.ly" height="61" width="50" /><br />
			</a>
		</div>
<p>Good SEO starts with good linking tactiques. And good linking tactiques starts with internal linking.<br />
A first way to show to your visitors, and to Google what is important to you, and how your website is built, is by using good internal linking.<br />
Here are some internal linking tips:</p>
<p><!--adsense-->Use spiderable navigation. Either use text based navigation (only text between your anchor tags), or if you use image based navigation, make sure you add well defined alt attributes attached to each image link. Best is if you use relevant keywords in your linktext or alt attributes.</p>
<p>Breadcrumbs (the home&gt;&gt;articles&gt;&gt;health&gt;&gt;articleabouthealth type of things you see on the top of some webpages) are a great internal linking tool. They can be used for both usability and anchor text differentiation.</p>
<p>In-content links are simply great. Not only do they tend to have a higher click through rate and perceived trust, but they also add more relevance to a link because of the textaround it. And not only your regular visitor will see it that way, Google also does!</p>
<p>Create a sitemap-page. A good sitemap is useful for your cherised visitors, useful for Google and other search engines and thus useful for you. Besides the sitemap-page, you should also create an XML-sitemap, which you can submit to the search engines. However, this is not about internal linking, and thus will be covered in a future post.</p>
<p>Link to other relevant pages on your website, preferrably important pages (with high PR, or good keyword density). Link to important pages on every (or at least most) topically relevant page of your website.</p>
<p>Use your links consistently, always use the same type of url to link to, for instance, if you use <a href="http://www.icantinternet.org/">http://www.icantinternet.org</a> in your links, then stick to that. Do not use other types that land on the same page, such as <a href="http://icantinternet.org/">http://icantinternet.org</a>, or <a href="http://www.icantinternet.org/">http://www.icantinternet.org/</a> or <a href="http://www.icantinternet.org/index.php">http://www.icantinternet.org/index.php</a></p>
<p>Find the pages on your website to which most links come in from outside your website (you can use Google or Yahoo! for that), and create links from your other pages towards those pages, in an optimised manner.</p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-bg-shr">
<ul class="socials">
		<li class="shr-blogengage">
			<a href="http://www.blogengage.com/submit.php?url=http://www.icantinternet.org/2008/12/optimizing-internal-linking/" rel="" class="external" title="Engage with this article!">Engage with this article!</a>
		</li>
		<li class="shr-comfeed">
			<a href="http://www.icantinternet.org/2008/12/optimizing-internal-linking/feed" rel="" 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://www.icantinternet.org/2008/12/optimizing-internal-linking/&amp;title=Optimizing+Internal+Linking" rel="" 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://www.icantinternet.org/2008/12/optimizing-internal-linking/&amp;title=Optimizing+Internal+Linking" rel="" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://www.icantinternet.org/2008/12/optimizing-internal-linking/&amp;t=Optimizing+Internal+Linking" rel="" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-friendfeed">
			<a href="http://www.friendfeed.com/share?title=Optimizing+Internal+Linking&amp;link=http://www.icantinternet.org/2008/12/optimizing-internal-linking/" rel="" class="external" title="Share this on FriendFeed">Share this on FriendFeed</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://www.icantinternet.org/2008/12/optimizing-internal-linking/&amp;imageurl=" rel="" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-hyves">
			<a href="http://www.hyves.nl/profilemanage/add/tips/?name=Optimizing+Internal+Linking&amp;text=Good%20SEO%20starts%20with%20good%20linking%20tactiques.%20And%20good%20linking%20tactiques%20starts%20with%20internal%20linking.%0D%0AA%20first%20way%20to%20show%20to%20your%20visitors%2C%20and%20to%20Google%20what%20is%20important%20to%20you%2C%20and%20how%20your%20website%20is%20built%2C%20is%20by%20using%20good%20internal%20linking.%0D%0AHere%20are%20some%20internal%20linking%20tips%3A%0D%0A%0D%0AUse%20spiderab+-+http://www.icantinternet.org/2008/12/optimizing-internal-linking/&amp;rating=5" rel="" class="external" title="Share this on Hyves">Share this on Hyves</a>
		</li>
		<li class="shr-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://www.icantinternet.org/2008/12/optimizing-internal-linking/&amp;title=Optimizing+Internal+Linking&amp;summary=Good%20SEO%20starts%20with%20good%20linking%20tactiques.%20And%20good%20linking%20tactiques%20starts%20with%20internal%20linking.%0D%0AA%20first%20way%20to%20show%20to%20your%20visitors%2C%20and%20to%20Google%20what%20is%20important%20to%20you%2C%20and%20how%20your%20website%20is%20built%2C%20is%20by%20using%20good%20internal%20linking.%0D%0AHere%20are%20some%20internal%20linking%20tips%3A%0D%0A%0D%0AUse%20spiderab&amp;source=iCan&#039;t Internet" rel="" class="external" title="Share this on LinkedIn">Share this on LinkedIn</a>
		</li>
		<li class="shr-misterwong">
			<a href="http://www.mister-wong.com/addurl/?bm_url=http://www.icantinternet.org/2008/12/optimizing-internal-linking/&amp;bm_description=Optimizing+Internal+Linking&amp;plugin=sexybookmarks" rel="" 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://www.icantinternet.org/2008/12/optimizing-internal-linking/&amp;title=Optimizing+Internal+Linking" rel="" class="external" title="Share this on Mixx">Share this on Mixx</a>
		</li>
		<li class="shr-myspace">
			<a href="http://www.myspace.com/Modules/PostTo/Pages/?u=http://www.icantinternet.org/2008/12/optimizing-internal-linking/&amp;t=Optimizing+Internal+Linking" rel="" class="external" title="Post this to MySpace">Post this to MySpace</a>
		</li>
		<li class="shr-pingfm">
			<a href="http://ping.fm/ref/?link=http://www.icantinternet.org/2008/12/optimizing-internal-linking/&amp;title=Optimizing+Internal+Linking&amp;body=Good%20SEO%20starts%20with%20good%20linking%20tactiques.%20And%20good%20linking%20tactiques%20starts%20with%20internal%20linking.%0D%0AA%20first%20way%20to%20show%20to%20your%20visitors%2C%20and%20to%20Google%20what%20is%20important%20to%20you%2C%20and%20how%20your%20website%20is%20built%2C%20is%20by%20using%20good%20internal%20linking.%0D%0AHere%20are%20some%20internal%20linking%20tips%3A%0D%0A%0D%0AUse%20spiderab" rel="" class="external" title="Ping this on Ping.fm">Ping this on Ping.fm</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://www.icantinternet.org/2008/12/optimizing-internal-linking/&amp;title=Optimizing+Internal+Linking" rel="" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-squidoo">
			<a href="http://www.squidoo.com/lensmaster/bookmark?http://www.icantinternet.org/2008/12/optimizing-internal-linking/" rel="" class="external" title="Add to a lense on Squidoo">Add to a lense on Squidoo</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://www.icantinternet.org/2008/12/optimizing-internal-linking/&amp;title=Optimizing+Internal+Linking" rel="" 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://www.icantinternet.org/2008/12/optimizing-internal-linking/" rel="" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-tumblr">
			<a href="http://www.tumblr.com/share?v=3&amp;u=http%3A%2F%2Fwww.icantinternet.org%2F2008%2F12%2Foptimizing-internal-linking%2F&amp;t=Optimizing+Internal+Linking" rel="" class="external" title="Share this on Tumblr">Share this on Tumblr</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=Optimizing+Internal+Linking+-+http://b2l.me/b2m8m&amp;source=shareaholic" rel="" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-yahoobuzz">
			<a href="http://buzz.yahoo.com/submit/?submitUrl=http://www.icantinternet.org/2008/12/optimizing-internal-linking/&amp;submitHeadline=Optimizing+Internal+Linking&amp;submitSummary=Good%20SEO%20starts%20with%20good%20linking%20tactiques.%20And%20good%20linking%20tactiques%20starts%20with%20internal%20linking.%0D%0AA%20first%20way%20to%20show%20to%20your%20visitors%2C%20and%20to%20Google%20what%20is%20important%20to%20you%2C%20and%20how%20your%20website%20is%20built%2C%20is%20by%20using%20good%20internal%20linking.%0D%0AHere%20are%20some%20internal%20linking%20tips%3A%0D%0A%0D%0AUse%20spiderab&amp;submitCategory=science&amp;submitAssetType=text" rel="" class="external" title="Buzz up!">Buzz up!</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>



<p>Related posts:<ol><li><a href='http://www.icantinternet.org/2008/12/optimizing-internal-linking-2/' rel='bookmark' title='Permanent Link: Optimizing Internal Linking'>Optimizing Internal Linking</a> <small>Good SEO starts with good linking tactiques. And good linking...</small></li>
<li><a href='http://www.icantinternet.org/2008/12/more-on-linking/' rel='bookmark' title='Permanent Link: More on linking'>More on linking</a> <small>1. Optimize your incoming links. Check out who is linking...</small></li>
<li><a href='http://www.icantinternet.org/2008/03/whats-this-pagerank-pr-all-about-3/' rel='bookmark' title='Permanent Link: What&#8217;s this PageRank (PR) all about?'>What&#8217;s this PageRank (PR) all about?</a> <small>PageRank is one of many methods that Google uses to...</small></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.icantinternet.org/2008/12/optimizing-internal-linking/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
	</channel>
</rss>
