<?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/"
	>

<channel>
	<title>DomainFunk.com &#187; How-To&#8217;s</title>
	<atom:link href="http://domainfunk.com/generalsections/how-tos/feed" rel="self" type="application/rss+xml" />
	<link>http://domainfunk.com</link>
	<description>A Magazine for webconnoissuers</description>
	<pubDate>Fri, 31 Jul 2009 08:31:59 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.7</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Parsing XML: XML to HTML using PHP!</title>
		<link>http://domainfunk.com/parsing-xml-xml-to-html-using-php</link>
		<comments>http://domainfunk.com/parsing-xml-xml-to-html-using-php#comments</comments>
		<pubDate>Fri, 31 Jul 2009 08:31:59 +0000</pubDate>
		<dc:creator>DomainFunk.com</dc:creator>
		
		<category><![CDATA[How-To's]]></category>

		<category><![CDATA[Scripting]]></category>

		<category><![CDATA[Tutorials]]></category>

		<category><![CDATA[Parsing XML]]></category>

		<category><![CDATA[PHP XML Parser Simple]]></category>

		<category><![CDATA[XML to HTML]]></category>

		<category><![CDATA[XML to HTML file]]></category>

		<guid isPermaLink="false">http://domainfunk.com/?p=299</guid>
		<description><![CDATA[  Lately I just finished scripting a nice little system that randomizes and publishes content based on an XML feed provided by partner content sponsor. While doing some research for this, I came to know I wasn&#8217;t the lone one who wanted to install such a system. The web app, for which I wrote [...]]]></description>
			<content:encoded><![CDATA[<!-- This is a HTML comment, it will not display in any page. Feel free to remove this comment if it cause any inconvenient to you.
	Thanks for using digg digg, please visit http://www.mkyong.com/blog/digg-digg-wordpress-plugin for any comments and ideas, 
	
    Author : Yong Mook Kim
    Website : http://www.mkyong.com
	--><div style='float:right'><table> <td><iframe src='http://digg.com/api/diggthis.php?w=new&amp;u=http://domainfunk.com/parsing-xml-xml-to-html-using-php&amp;t=Parsing+XML%3A+XML+to+HTML+using+PHP%21&amp;s=normal' height='80' width='52' frameborder='0' scrolling='no'></iframe></td> <td><iframe src='http://www.reddit.com/button_content?newwindow=1&amp;url=http://domainfunk.com/parsing-xml-xml-to-html-using-php&amp;title=Parsing+XML%3A+XML+to+HTML+using+PHP%21&amp;t=2 ' height='80' width='52' scrolling='no' frameborder='0' ></iframe></td></table></div><p>Lately I just finished scripting a nice little system that randomizes and publishes content based on an XML feed provided by partner content sponsor. While doing some research for this, I came to know I wasn&#8217;t the lone one who wanted to install such a system. The web app, for which I wrote this system, runs a script every week creating new .html files from an XML content feed and keeps creating these plain .HTML files on the fly, in essence growing my content library every week <img src='http://domainfunk.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Hope this comes in hand to you guys out there looking for this.</p>
<h1>The Simple Parser</h1>
<p>I needed a simple parser which would not need XSLT and the size of the parser would remain small. Since the parser would be placed as a cron job, I needed it to be simple and without the complexities of XSLT. So here is part of the code that made the parser worked.<br />
<code><br />
&lt;?php</code></p>
<p>$doc = new DOMDocument(); //We create a new DOM object.<br />
$doc-&gt;load(&#8217;samplefeed.xml&#8217;,LIBXML_DTDLOAD|LIBXML_DTDATTR); //load all elements of the XML feed. Using LIBXML_DTDLOAD we  load external subset and use LIBXML_DTDATTR to set the default DTD attributes, both are <a title="PHP Lib XML constants" href="http://www.w3schools.com/php/php_ref_libxml.asp" target="_blank">PHP Lib XML constants.</a><br />
$contentitems = $doc-&gt;getElementsByTagName( &#8220;books&#8221; ); // we are now fetching the elements, and with this statement fetching all elements enclosed within the &lt;books&gt; tags.</p>
<p>foreach($contentitems as $contentitem)<br />
{</p>
<p>$titles = $contentitem-&gt;getElementsByTagName( &#8220;title&#8221; );<br />
$title = $titles-&gt;item(0)-&gt;nodeValue; //we are not taking the values from each element nodes.</p>
<p>$authors = $metadata-&gt;getElementsByTagName( &#8220;byline&#8221; );<br />
$author = $authors-&gt;item(0)-&gt;nodeValue;</p>
<p>$ISBNS = $metadata-&gt;getElementsByTagName( &#8220;isbn&#8221; );<br />
$ISBN = $ISBNS-&gt;item(0)-&gt;nodeValue;</p>
<p>//below we are starting an HTML file and using a PHP variable to hold it.</p>
<p>$html = &#8216;&lt;html&gt;</p>
<p>&lt;!&#8211; html code can come in here &#8211;&gt;&#8217;;</p>
<p>/*main article starts here */</p>
<p>$html = $html.$title.&#8221;&lt;br/&gt;&#8221;;<br />
$html = $html.$author.&#8221;&lt;br/&gt;&#8221;;<br />
$html = $html.$ISBN.&#8221;&lt;br/&gt;&#8221;;</p>
<p>$html =&#8217;<br />
/*footer part of the html page */<br />
&lt;/html&gt;&#8217;;</p>
<p>$ourFileName = &#8220;feedarticles/&#8221;.trim($title).&#8221;.html&#8221;; //keeping the title the same as<br />
$ourFileName = str_ireplace(&#8221;?&#8221;,&#8221;",$ourFileName); //removing characters that get attached during char-set conversions or shall we say non-conversions.<br />
$ourFileName = str_ireplace(&#8221;_&#8221;,&#8221;",$ourFileName);<br />
$ourFileName = str_ireplace(&#8221;:&#8221;,&#8221;",$ourFileName);<br />
$ourFileName = str_ireplace(&#8221;;&#8221;,&#8221;",$ourFileName);<br />
$ourFileName = str_ireplace(&#8221;&#8216;&#8221;,&#8221;",$ourFileName);</p>
<p>echo $ourFileName.&#8221; creating the file &#8220;; //Just echoing the statement while creating the file.<br />
$ourFileHandle = fopen($ourFileName, &#8216;w&#8217;) or die(&#8221;can&#8217;t open file&#8221;); //init the file handle<br />
fwrite($ourFileHandle, $html);//write the file.<br />
fclose($ourFileHandle);//close the file handle.</p>
<p>}</p>
<p>?&gt;</p>
<h1>The XML Page</h1>
<p>The below is the SampleFeed.xml file, with the fields that will be parsed.</p>
<p>&lt;NewDataSet _xmlns3a_xsi=&#8221;http://www.w3.org/2001/XMLSchema-instance&#8221;&gt;</p>
<p>&lt;Books&gt;<br />
&lt;title&gt;Java Server Pages&lt;/title&gt;<br />
&lt;author&gt;SAMS&lt;/author&gt;<br />
&lt;ISBN&gt;1234&lt;/ISBN&gt;</p>
<p>&lt;title&gt;Logistics&lt;/title&gt;<br />
&lt;author&gt;Tata Mcgraw Hil&lt;/author&gt;<br />
&lt;ISBN&gt;5678&lt;/ISBN&gt;</p>
<p>&lt;/books&gt;<br />
&lt;/NewDataSet&gt;</p>
<h1>Note</h1>
<p>Albeit, there are better and newer ways of parsing XML using PHP, this was suitable for me, because its pretty simple code <img src='http://domainfunk.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> and it works wonders!</p>
<h1>Resources</h1>
<p>Here are both files zipped up, make sure the permissions are setup right for directories that you want to user write these files into. Here is the entire <a title="Simple XML Parser " href="http://domainfunk.com/articlesuploads/SimpleXMLParse.zip" target="_blank">Simple XML Parser</a> zip, that creates .html files from XML feeds.</p>

<div class="sociable">
<div class="sociable_tagline">
<strong>Enjoyed it? Share it!:</strong>
</div>
<ul>
	<li class="sociablefirst"><a rel="nofollow" target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fdomainfunk.com%2Fparsing-xml-xml-to-html-using-php&amp;title=Parsing%20XML%3A%20XML%20to%20HTML%20using%20PHP%21&amp;bodytext=Lately%20I%20just%20finished%20scripting%20a%20nice%20little%20system%20that%20randomizes%20and%20publishes%20content%20based%20on%20an%20XML%20feed%20provided%20by%20partner%20content%20sponsor.%20While%20doing%20some%20research%20for%20this%2C%20I%20came%20to%20know%20I%20wasn%27t%20the%20lone%20one%20who%20wanted%20to%20install%20such%20" title="Digg"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fdomainfunk.com%2Fparsing-xml-xml-to-html-using-php&amp;title=Parsing%20XML%3A%20XML%20to%20HTML%20using%20PHP%21&amp;annotation=Lately%20I%20just%20finished%20scripting%20a%20nice%20little%20system%20that%20randomizes%20and%20publishes%20content%20based%20on%20an%20XML%20feed%20provided%20by%20partner%20content%20sponsor.%20While%20doing%20some%20research%20for%20this%2C%20I%20came%20to%20know%20I%20wasn%27t%20the%20lone%20one%20who%20wanted%20to%20install%20such%20" title="Google Bookmarks"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Fdomainfunk.com%2Fparsing-xml-xml-to-html-using-php&amp;title=Parsing%20XML%3A%20XML%20to%20HTML%20using%20PHP%21&amp;notes=Lately%20I%20just%20finished%20scripting%20a%20nice%20little%20system%20that%20randomizes%20and%20publishes%20content%20based%20on%20an%20XML%20feed%20provided%20by%20partner%20content%20sponsor.%20While%20doing%20some%20research%20for%20this%2C%20I%20came%20to%20know%20I%20wasn%27t%20the%20lone%20one%20who%20wanted%20to%20install%20such%20" title="del.icio.us"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="" title="TwitThis"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/" title="TwitThis" alt="TwitThis" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fdomainfunk.com%2Fparsing-xml-xml-to-html-using-php&amp;t=Parsing%20XML%3A%20XML%20to%20HTML%20using%20PHP%21" title="Facebook"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="http://technorati.com/faves?add=http%3A%2F%2Fdomainfunk.com%2Fparsing-xml-xml-to-html-using-php" title="Technorati"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fdomainfunk.com%2Fparsing-xml-xml-to-html-using-php&amp;title=Parsing%20XML%3A%20XML%20to%20HTML%20using%20PHP%21" title="StumbleUpon"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="mailto:?subject=Parsing%20XML%3A%20XML%20to%20HTML%20using%20PHP%21&amp;body=http%3A%2F%2Fdomainfunk.com%2Fparsing-xml-xml-to-html-using-php" title="E-mail this story to a friend!"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/email_link.png" title="E-mail this story to a friend!" alt="E-mail this story to a friend!" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fdomainfunk.com%2Fparsing-xml-xml-to-html-using-php&amp;title=Parsing%20XML%3A%20XML%20to%20HTML%20using%20PHP%21&amp;source=DomainFunk.com+A+Magazine+for+webconnoissuers&amp;summary=Lately%20I%20just%20finished%20scripting%20a%20nice%20little%20system%20that%20randomizes%20and%20publishes%20content%20based%20on%20an%20XML%20feed%20provided%20by%20partner%20content%20sponsor.%20While%20doing%20some%20research%20for%20this%2C%20I%20came%20to%20know%20I%20wasn%27t%20the%20lone%20one%20who%20wanted%20to%20install%20such%20" title="LinkedIn"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="https://favorites.live.com/quickadd.aspx?marklet=1&amp;url=http%3A%2F%2Fdomainfunk.com%2Fparsing-xml-xml-to-html-using-php&amp;title=Parsing%20XML%3A%20XML%20to%20HTML%20using%20PHP%21" title="Live"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/live.png" title="Live" alt="Live" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="" title="Ma.gnolia"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/" title="Ma.gnolia" alt="Ma.gnolia" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="http://www.myspace.com/Modules/PostTo/Pages/?u=http%3A%2F%2Fdomainfunk.com%2Fparsing-xml-xml-to-html-using-php&amp;t=Parsing%20XML%3A%20XML%20to%20HTML%20using%20PHP%21" title="MySpace"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/myspace.png" title="MySpace" alt="MySpace" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="http://buzz.yahoo.com/submit/?submitUrl=http%3A%2F%2Fdomainfunk.com%2Fparsing-xml-xml-to-html-using-php&amp;submitHeadline=Parsing%20XML%3A%20XML%20to%20HTML%20using%20PHP%21&amp;submitSummary=Lately%20I%20just%20finished%20scripting%20a%20nice%20little%20system%20that%20randomizes%20and%20publishes%20content%20based%20on%20an%20XML%20feed%20provided%20by%20partner%20content%20sponsor.%20While%20doing%20some%20research%20for%20this%2C%20I%20came%20to%20know%20I%20wasn%27t%20the%20lone%20one%20who%20wanted%20to%20install%20such%20&amp;submitCategory=science&amp;submitAssetType=text" title="Yahoo! Buzz"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/yahoobuzz.png" title="Yahoo! Buzz" alt="Yahoo! Buzz" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="http://yigg.de/neu?exturl=http%3A%2F%2Fdomainfunk.com%2Fparsing-xml-xml-to-html-using-php&amp;exttitle=Parsing%20XML%3A%20XML%20to%20HTML%20using%20PHP%21" title="Yigg"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/yiggit.png" title="Yigg" alt="Yigg" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="http://sphinn.com/submit.php?url=http%3A%2F%2Fdomainfunk.com%2Fparsing-xml-xml-to-html-using-php&amp;title=Parsing%20XML%3A%20XML%20to%20HTML%20using%20PHP%21" title="Sphinn"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/sphinn.png" title="Sphinn" alt="Sphinn" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="http://www.mixx.com/submit?page_url=http%3A%2F%2Fdomainfunk.com%2Fparsing-xml-xml-to-html-using-php&amp;title=Parsing%20XML%3A%20XML%20to%20HTML%20using%20PHP%21" title="Mixx"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/mixx.png" title="Mixx" alt="Mixx" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="http://blogmarks.net/my/new.php?mini=1&amp;simple=1&amp;url=http%3A%2F%2Fdomainfunk.com%2Fparsing-xml-xml-to-html-using-php&amp;title=Parsing%20XML%3A%20XML%20to%20HTML%20using%20PHP%21" title="blogmarks"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/blogmarks.png" title="blogmarks" alt="blogmarks" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="http://cimlap.blogter.hu/index.php?action=suggest_link&amp;title=Parsing%20XML%3A%20XML%20to%20HTML%20using%20PHP%21&amp;url=http%3A%2F%2Fdomainfunk.com%2Fparsing-xml-xml-to-html-using-php" title="blogtercimlap"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/blogter.png" title="blogtercimlap" alt="blogtercimlap" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="" title="Book.mark.hu"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/" title="Book.mark.hu" alt="Book.mark.hu" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="http://co.mments.com/track?url=http%3A%2F%2Fdomainfunk.com%2Fparsing-xml-xml-to-html-using-php&amp;title=Parsing%20XML%3A%20XML%20to%20HTML%20using%20PHP%21" title="co.mments"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/co.mments.png" title="co.mments" alt="co.mments" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="" title="De.lirio.us"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/" title="De.lirio.us" alt="De.lirio.us" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="http://www.dotnetkicks.com/kick/?url=http%3A%2F%2Fdomainfunk.com%2Fparsing-xml-xml-to-html-using-php&amp;title=Parsing%20XML%3A%20XML%20to%20HTML%20using%20PHP%21" title="DotNetKicks"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/dotnetkicks.png" title="DotNetKicks" alt="DotNetKicks" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="http://www.linkagogo.com/go/AddNoPopup?url=http%3A%2F%2Fdomainfunk.com%2Fparsing-xml-xml-to-html-using-php&amp;title=Parsing%20XML%3A%20XML%20to%20HTML%20using%20PHP%21" title="LinkaGoGo"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/linkagogo.png" title="LinkaGoGo" alt="LinkaGoGo" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="http://www.newsvine.com/_tools/seed&amp;save?u=http%3A%2F%2Fdomainfunk.com%2Fparsing-xml-xml-to-html-using-php&amp;h=Parsing%20XML%3A%20XML%20to%20HTML%20using%20PHP%21" title="NewsVine"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/newsvine.png" title="NewsVine" alt="NewsVine" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="http://reddit.com/submit?url=http%3A%2F%2Fdomainfunk.com%2Fparsing-xml-xml-to-html-using-php&amp;title=Parsing%20XML%3A%20XML%20to%20HTML%20using%20PHP%21" title="Reddit"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/reddit.png" title="Reddit" alt="Reddit" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="" title="scuttle"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/" title="scuttle" alt="scuttle" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="" title="Spurl"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/" title="Spurl" alt="Spurl" class="sociable-hovers" /></a></li>
	<li class="sociablelast"><a rel="nofollow" target="_blank" href="" title="YahooMyWeb"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/" title="YahooMyWeb" alt="YahooMyWeb" class="sociable-hovers" /></a></li>
</ul>
</div>
]]></content:encoded>
			<wfw:commentRss>http://domainfunk.com/parsing-xml-xml-to-html-using-php/feed</wfw:commentRss>
		</item>
		<item>
		<title>Jquery Feedback Tab</title>
		<link>http://domainfunk.com/jquery-feedback-tab</link>
		<comments>http://domainfunk.com/jquery-feedback-tab#comments</comments>
		<pubDate>Sat, 20 Jun 2009 13:08:35 +0000</pubDate>
		<dc:creator>DomainFunk.com</dc:creator>
		
		<category><![CDATA[How-To's]]></category>

		<category><![CDATA[jQuery]]></category>

		<category><![CDATA[feedback tab ajax]]></category>

		<category><![CDATA[jquery feedback tab]]></category>

		<category><![CDATA[jquery tab]]></category>

		<guid isPermaLink="false">http://domainfunk.com/?p=267</guid>
		<description><![CDATA[  
Every one must have visited, one of the many interactive websites, with a feedback tab on the side or on the top, this tab keeps following as you scroll. Ever wondered, gee, how do I get that ? No? Yes? Well I did and I found out there are companies out there charging [...]]]></description>
			<content:encoded><![CDATA[<!-- This is a HTML comment, it will not display in any page. Feel free to remove this comment if it cause any inconvenient to you.
	Thanks for using digg digg, please visit http://www.mkyong.com/blog/digg-digg-wordpress-plugin for any comments and ideas, 
	
    Author : Yong Mook Kim
    Website : http://www.mkyong.com
	--><div style='float:right'><table> <td><iframe src='http://digg.com/api/diggthis.php?w=new&amp;u=http://domainfunk.com/jquery-feedback-tab&amp;t=Jquery+Feedback+Tab&amp;s=normal' height='80' width='52' frameborder='0' scrolling='no'></iframe></td> <td><iframe src='http://www.reddit.com/button_content?newwindow=1&amp;url=http://domainfunk.com/jquery-feedback-tab&amp;title=Jquery+Feedback+Tab&amp;t=2 ' height='80' width='52' scrolling='no' frameborder='0' ></iframe></td></table></div><p><a href="http://domainfunk.com/jquery-feedback-tab"><img class="size-full wp-image-289" title="jQuery Feedback Tab" src="http://domainfunk.com/wp-content/uploads/2009/06/jqueryfeedbacktab.jpg" alt="jQuery Feedback Tab" width="150" height="150" /></a></p>
<p>Every one must have visited, one of the many interactive websites, with a feedback tab on the side or on the top, this tab keeps following as you scroll. Ever wondered, gee, how do I get that ? No? Yes? Well I did and I found out there are companies out there charging a bomb for this service/product.</p>
<p>So I set out on a quest to get me one of my own feedback tab. Since I love Jquery, I started to hunt for a jquery feedback tab, and I built one, with the help of a nifty plugin. Want to know how to do it?</p>
<p>Here&#8217;s how..</p>
<h1>jQuery Feedback Tab Requirements</h1>
<p>To get started we need the  <a href="http://code.google.com/p/jqueryjs/downloads/detail?name=jquery-1.3.2.min.js&amp;downloadBtn=domainfunk.com">latest Jquery release from here</a> and a nifty jQuery based plugin, known as <a href="http://plugins.jquery.com/files/boxy-0.1.4.zip">boxy.js from here</a>. These two would give us the feedback effect you see on this site. Other than these two we require an image, or alternatively you can just have a div if you did like, for the side &#8220;Feedback&#8221; tab. You can download all of my <a href="http://domainfunk.com/articlesuploads/jQueryFeedbackTab.zip">jquery feedback tab files from here</a>.</p>
<h1>jQuery Feedback Tab Code</h1>
<p>Here&#8217;s the code required in your page (File) which would be where you would require the jquery feedback tab. Alternatively, if you have a content management system, like wordpress or joomla, you could use the header or the index files, accordingly, if you need help, just drop us a comment or two <img src='http://domainfunk.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p><code><br />
<span><br />
<strong>1: &lt;script type=&#8221;text/javascript&#8221; src=&#8221;jquery.js&#8221;&gt;&lt;/script&gt;</strong></span></code></p>
<p><code><span><strong>2: &lt;script type=&#8221;text/javascript&#8221; src=&#8221;boxy.js&#8221;&gt;&lt;/script&gt;</strong></span></code></p>
<p><code><strong> </strong></code></p>
<p><code><span><strong>3: &lt;link rel=&#8221;stylesheet&#8221; href=&#8221;boxy.css&#8221; type=&#8221;text/css&#8221; /&gt;<br />
</strong></span><br />
</code></p>
<p>The above three lines import the .css file required, that you can play around with and import/include the jquery.js file and the boxy.js plugin file. Make sure the &#8220;src&#8221; path is set up right, with the proper relative path for these scripts.</p>
<p><code><br />
<span><br />
<strong>4: $(function() {</strong></span></code></p>
<p><code><span><strong>5:    /* set global variable for boxy window */</strong></span></code></p>
<p><code><strong>6:    var contactBoxy = null;</strong></code></p>
<p><code><strong>7:    /* what to do when click on contact us link */</p>
<p>8:    $(&#8217;.contact_us&#8217;).click(function(){</p>
<p>9:        var boxy_content;</p>
<p>10:        boxy_content += &#8220;&lt;div style=\&#8221;width:300px; height:300px \&#8221;&gt;&lt;form id=\&#8221;feedbacked\&#8221;&gt;&#8221;;</p>
<p>11:       boxy_content += &#8220;&lt;p&gt;Subject&lt;br /&gt;&lt;input type=\&#8221;text\&#8221; name=\&#8221;subject\&#8221; id=\&#8221;subject\&#8221; size=\&#8221;41\&#8221; /&gt;&lt;/p&gt;&lt;p&gt;Your name and/or email:&lt;br /&gt;&lt;input type=\&#8221;text\&#8221; name=\&#8221;your_email\&#8221; size=\&#8221;41\&#8221; /&gt;&lt;/p&gt;&lt;p&gt;Comment:&lt;br /&gt;&lt;textarea name=\&#8221;comment\&#8221; id=\&#8221;comment\&#8221; cols=\&#8221;37\&#8221; rows=\&#8221;5\&#8221;&gt;&lt;/textarea&gt;&lt;/p&gt;&lt;br /&gt;&lt;input type=\&#8221;submit\&#8221; name=\&#8221;submit\&#8221; value=\&#8221;Send &gt;&gt;\&#8221; /&gt;&#8221;;</p>
<p>12:        boxy_content += &#8220;&lt;/form&gt;&lt;/div&gt;&#8221;;</p>
<p>13:        contactBoxy = new Boxy(boxy_content, {</p>
<p>14:            title: &#8220;Send feedback&#8221;,</p>
<p>15:            draggable: false,</p>
<p>16:           modal:true,</p>
<p>17:            behaviours: function(c) {</p>
<p>18:                c.find(&#8217;#feedbacked&#8217;).submit(function() {</p>
<p>19:                    Boxy.get(this).setContent(&#8221;&lt;div style=\&#8221;width: 300px; height: 300px\&#8221;&gt;Sending&#8230;&lt;/div&gt;&#8221;);</p>
<p>20:                    // submit form by ajax using post and send 3 values: subject, your_email, comment</p>
<p>21:                    $.post(&#8221;http://tweetfeat.com/wp-content/themes/default/suggest.php&#8221;, { subject: c.find(&#8221;input[name='subject']&#8220;).val(), your_email: c.find(&#8221;input[name='your_email']&#8220;).val(), comment: c.find(&#8221;#comment&#8221;).val()},</p>
<p>22:                    function(data){</p>
<p>23:                      /*set boxy content to data from ajax call back*/</p>
<p>24:                        contactBoxy.setContent(&#8221;&lt;div style=\&#8221;width: 300px; height: 300px\&#8221;&gt;&#8221;+data+&#8221;&lt;/div&gt;&#8221;);</p>
<p>25:                    });</p>
<p>26:                    return false;</p>
<p>27:                });</p>
<p>28:            }</p>
<p>29:        });</p>
<p>30:        return false;</p>
<p>31:    });</p>
<p></strong></code></p>
<p><code><span><strong>32: });<br />
</strong></span><br />
</code></p>
<p>The above code is responsible for creating the modal box, just like the ones we see with facebook.com. The code is very self explanatory, again if you have any questions feel free to ask in the comments. There are comments above that would be of help to some.</p>
<p><code><br />
<span><br />
<strong>33: #feedback{</strong></span></code></p>
<p><code><span><strong>34: position:fixed;</strong></span></code></p>
<p><code><strong>35: width:50px;</strong></code></p>
<p><code><strong>36: height:150px;</p>
<p>37: top: 150px;</p>
<p>38: z-index:1;</p>
<p></strong></code></p>
<p><code><span><strong>39: }<br />
</strong></span><br />
</code></p>
<p>The above is the CSS code for the tab, now the tab can be an image or div or both, like in our case we have both, a div with the background as a gradient and the foreground being the text &#8220;Feedback&#8221;.</p>
<p><code><br />
<span><strong><br />
40: &lt;div id=&#8221;feedback&#8221;&gt;&lt;a href=&#8221;#&#8221; class=&#8221;contact_us&#8221;&gt;&lt;img src=&#8221;feedback.gif&#8221; border=&#8221;0&#8243;/&gt;&lt;/a&gt;&lt;/div&gt;</strong><br />
</span><br />
</code></p>
<p>Place the above code just after the &lt;body&gt; tag. Since the position of the div is fixed, it would be appearing outside the normal frame of the browser.</p>
<h1>Conclusion:</h1>
<p>I hope this post would save you the cost for the feedback being implemented, as a give away, our first five followers would get a &#8220;Free Jquery Feedback Tab&#8221; installation from us. All you have to do is subscribe and leave a comment!</p>
<h1><a href="http://domainfunk.com/articlesuploads/jQueryFeedbackTab.zip">Download Entire jQuery Feedback Tab Source Code, With Example. Click Here.</a></h1>
<h1>Resources</h1>
<p>For more on boxy, I suggest visiting @ http://onehackoranother.com/projects/jquery/boxy/</p>

<div class="sociable">
<div class="sociable_tagline">
<strong>Enjoyed it? Share it!:</strong>
</div>
<ul>
	<li class="sociablefirst"><a rel="nofollow" target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fdomainfunk.com%2Fjquery-feedback-tab&amp;title=Jquery%20Feedback%20Tab&amp;bodytext=%0D%0A%0D%0AEvery%20one%20must%20have%20visited%2C%20one%20of%20the%20many%20interactive%20websites%2C%20with%20a%20feedback%20tab%20on%20the%20side%20or%20on%20the%20top%2C%20this%20tab%20keeps%20following%20as%20you%20scroll.%20Ever%20wondered%2C%20gee%2C%20how%20do%20I%20get%20that%20%3F%20No%3F%20Yes%3F%20Well%20I%20did%20and%20I%20found%20out%20there%20are%20compan" title="Digg"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fdomainfunk.com%2Fjquery-feedback-tab&amp;title=Jquery%20Feedback%20Tab&amp;annotation=%0D%0A%0D%0AEvery%20one%20must%20have%20visited%2C%20one%20of%20the%20many%20interactive%20websites%2C%20with%20a%20feedback%20tab%20on%20the%20side%20or%20on%20the%20top%2C%20this%20tab%20keeps%20following%20as%20you%20scroll.%20Ever%20wondered%2C%20gee%2C%20how%20do%20I%20get%20that%20%3F%20No%3F%20Yes%3F%20Well%20I%20did%20and%20I%20found%20out%20there%20are%20compan" title="Google Bookmarks"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Fdomainfunk.com%2Fjquery-feedback-tab&amp;title=Jquery%20Feedback%20Tab&amp;notes=%0D%0A%0D%0AEvery%20one%20must%20have%20visited%2C%20one%20of%20the%20many%20interactive%20websites%2C%20with%20a%20feedback%20tab%20on%20the%20side%20or%20on%20the%20top%2C%20this%20tab%20keeps%20following%20as%20you%20scroll.%20Ever%20wondered%2C%20gee%2C%20how%20do%20I%20get%20that%20%3F%20No%3F%20Yes%3F%20Well%20I%20did%20and%20I%20found%20out%20there%20are%20compan" title="del.icio.us"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="" title="TwitThis"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/" title="TwitThis" alt="TwitThis" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fdomainfunk.com%2Fjquery-feedback-tab&amp;t=Jquery%20Feedback%20Tab" title="Facebook"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="http://technorati.com/faves?add=http%3A%2F%2Fdomainfunk.com%2Fjquery-feedback-tab" title="Technorati"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fdomainfunk.com%2Fjquery-feedback-tab&amp;title=Jquery%20Feedback%20Tab" title="StumbleUpon"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="mailto:?subject=Jquery%20Feedback%20Tab&amp;body=http%3A%2F%2Fdomainfunk.com%2Fjquery-feedback-tab" title="E-mail this story to a friend!"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/email_link.png" title="E-mail this story to a friend!" alt="E-mail this story to a friend!" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fdomainfunk.com%2Fjquery-feedback-tab&amp;title=Jquery%20Feedback%20Tab&amp;source=DomainFunk.com+A+Magazine+for+webconnoissuers&amp;summary=%0D%0A%0D%0AEvery%20one%20must%20have%20visited%2C%20one%20of%20the%20many%20interactive%20websites%2C%20with%20a%20feedback%20tab%20on%20the%20side%20or%20on%20the%20top%2C%20this%20tab%20keeps%20following%20as%20you%20scroll.%20Ever%20wondered%2C%20gee%2C%20how%20do%20I%20get%20that%20%3F%20No%3F%20Yes%3F%20Well%20I%20did%20and%20I%20found%20out%20there%20are%20compan" title="LinkedIn"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="https://favorites.live.com/quickadd.aspx?marklet=1&amp;url=http%3A%2F%2Fdomainfunk.com%2Fjquery-feedback-tab&amp;title=Jquery%20Feedback%20Tab" title="Live"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/live.png" title="Live" alt="Live" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="" title="Ma.gnolia"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/" title="Ma.gnolia" alt="Ma.gnolia" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="http://www.myspace.com/Modules/PostTo/Pages/?u=http%3A%2F%2Fdomainfunk.com%2Fjquery-feedback-tab&amp;t=Jquery%20Feedback%20Tab" title="MySpace"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/myspace.png" title="MySpace" alt="MySpace" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="http://buzz.yahoo.com/submit/?submitUrl=http%3A%2F%2Fdomainfunk.com%2Fjquery-feedback-tab&amp;submitHeadline=Jquery%20Feedback%20Tab&amp;submitSummary=%0D%0A%0D%0AEvery%20one%20must%20have%20visited%2C%20one%20of%20the%20many%20interactive%20websites%2C%20with%20a%20feedback%20tab%20on%20the%20side%20or%20on%20the%20top%2C%20this%20tab%20keeps%20following%20as%20you%20scroll.%20Ever%20wondered%2C%20gee%2C%20how%20do%20I%20get%20that%20%3F%20No%3F%20Yes%3F%20Well%20I%20did%20and%20I%20found%20out%20there%20are%20compan&amp;submitCategory=science&amp;submitAssetType=text" title="Yahoo! Buzz"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/yahoobuzz.png" title="Yahoo! Buzz" alt="Yahoo! Buzz" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="http://yigg.de/neu?exturl=http%3A%2F%2Fdomainfunk.com%2Fjquery-feedback-tab&amp;exttitle=Jquery%20Feedback%20Tab" title="Yigg"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/yiggit.png" title="Yigg" alt="Yigg" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="http://sphinn.com/submit.php?url=http%3A%2F%2Fdomainfunk.com%2Fjquery-feedback-tab&amp;title=Jquery%20Feedback%20Tab" title="Sphinn"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/sphinn.png" title="Sphinn" alt="Sphinn" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="http://www.mixx.com/submit?page_url=http%3A%2F%2Fdomainfunk.com%2Fjquery-feedback-tab&amp;title=Jquery%20Feedback%20Tab" title="Mixx"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/mixx.png" title="Mixx" alt="Mixx" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="http://blogmarks.net/my/new.php?mini=1&amp;simple=1&amp;url=http%3A%2F%2Fdomainfunk.com%2Fjquery-feedback-tab&amp;title=Jquery%20Feedback%20Tab" title="blogmarks"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/blogmarks.png" title="blogmarks" alt="blogmarks" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="http://cimlap.blogter.hu/index.php?action=suggest_link&amp;title=Jquery%20Feedback%20Tab&amp;url=http%3A%2F%2Fdomainfunk.com%2Fjquery-feedback-tab" title="blogtercimlap"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/blogter.png" title="blogtercimlap" alt="blogtercimlap" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="" title="Book.mark.hu"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/" title="Book.mark.hu" alt="Book.mark.hu" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="http://co.mments.com/track?url=http%3A%2F%2Fdomainfunk.com%2Fjquery-feedback-tab&amp;title=Jquery%20Feedback%20Tab" title="co.mments"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/co.mments.png" title="co.mments" alt="co.mments" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="" title="De.lirio.us"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/" title="De.lirio.us" alt="De.lirio.us" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="http://www.dotnetkicks.com/kick/?url=http%3A%2F%2Fdomainfunk.com%2Fjquery-feedback-tab&amp;title=Jquery%20Feedback%20Tab" title="DotNetKicks"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/dotnetkicks.png" title="DotNetKicks" alt="DotNetKicks" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="http://www.linkagogo.com/go/AddNoPopup?url=http%3A%2F%2Fdomainfunk.com%2Fjquery-feedback-tab&amp;title=Jquery%20Feedback%20Tab" title="LinkaGoGo"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/linkagogo.png" title="LinkaGoGo" alt="LinkaGoGo" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="http://www.newsvine.com/_tools/seed&amp;save?u=http%3A%2F%2Fdomainfunk.com%2Fjquery-feedback-tab&amp;h=Jquery%20Feedback%20Tab" title="NewsVine"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/newsvine.png" title="NewsVine" alt="NewsVine" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="http://reddit.com/submit?url=http%3A%2F%2Fdomainfunk.com%2Fjquery-feedback-tab&amp;title=Jquery%20Feedback%20Tab" title="Reddit"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/reddit.png" title="Reddit" alt="Reddit" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="" title="scuttle"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/" title="scuttle" alt="scuttle" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="" title="Spurl"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/" title="Spurl" alt="Spurl" class="sociable-hovers" /></a></li>
	<li class="sociablelast"><a rel="nofollow" target="_blank" href="" title="YahooMyWeb"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/" title="YahooMyWeb" alt="YahooMyWeb" class="sociable-hovers" /></a></li>
</ul>
</div>
]]></content:encoded>
			<wfw:commentRss>http://domainfunk.com/jquery-feedback-tab/feed</wfw:commentRss>
		</item>
		<item>
		<title>Photoshop: Day turns to night!</title>
		<link>http://domainfunk.com/photoshop-day-turns-to-night</link>
		<comments>http://domainfunk.com/photoshop-day-turns-to-night#comments</comments>
		<pubDate>Sun, 25 Jan 2009 08:07:38 +0000</pubDate>
		<dc:creator>DomainFunk.com</dc:creator>
		
		<category><![CDATA[How-To's]]></category>

		<category><![CDATA[Tutorials]]></category>

		<category><![CDATA[photoshop tutorial]]></category>

		<category><![CDATA[photoshop video tutorial]]></category>

		<guid isPermaLink="false">http://domainfunk.com/?p=197</guid>
		<description><![CDATA[  A quick photoshop video tutorial to convert day pictures/images into night pictures/images. Pretty Simple and straight forward. 



Enjoyed it? Share it!:


	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	


]]></description>
			<content:encoded><![CDATA[<!-- This is a HTML comment, it will not display in any page. Feel free to remove this comment if it cause any inconvenient to you.
	Thanks for using digg digg, please visit http://www.mkyong.com/blog/digg-digg-wordpress-plugin for any comments and ideas, 
	
    Author : Yong Mook Kim
    Website : http://www.mkyong.com
	--><div style='float:right'><table> <td><iframe src='http://digg.com/api/diggthis.php?w=new&amp;u=http://domainfunk.com/photoshop-day-turns-to-night&amp;t=Photoshop%3A+Day+turns+to+night%21&amp;s=normal' height='80' width='52' frameborder='0' scrolling='no'></iframe></td> <td><iframe src='http://www.reddit.com/button_content?newwindow=1&amp;url=http://domainfunk.com/photoshop-day-turns-to-night&amp;title=Photoshop%3A+Day+turns+to+night%21&amp;t=2 ' height='80' width='52' scrolling='no' frameborder='0' ></iframe></td></table></div><p>A quick photoshop video tutorial to convert day pictures/images into night pictures/images. Pretty Simple and straight forward. </p>

    <object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" id="swfobj_0" width="630" height="800" align="left">
      <param name="movie" value="http://domainfunk.com/wp-content/uploads/2009/01/photodaytonight.swf" />
      <param name="align" value="left" />
      <param name="allowfullscreen" value="true" />
      <!--[if !IE]>-->
      <object type="application/x-shockwave-flash" data="http://domainfunk.com/wp-content/uploads/2009/01/photodaytonight.swf" width="630" height="800" align="left" allowfullscreen="true">
      <!--<![endif]-->
        Photoshop Tutorial: Day to Night
      <!--[if !IE]>-->
      </object>
      <!--<![endif]-->
    </object>


<div class="sociable">
<div class="sociable_tagline">
<strong>Enjoyed it? Share it!:</strong>
</div>
<ul>
	<li class="sociablefirst"><a rel="nofollow" target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fdomainfunk.com%2Fphotoshop-day-turns-to-night&amp;title=Photoshop%3A%20Day%20turns%20to%20night%21&amp;bodytext=A%20quick%20photoshop%20video%20tutorial%20to%20convert%20day%20pictures%2Fimages%20into%20night%20pictures%2Fimages.%20Pretty%20Simple%20and%20straight%20forward.%20%0D%0A%0D%0A%0D%0A%20" title="Digg"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fdomainfunk.com%2Fphotoshop-day-turns-to-night&amp;title=Photoshop%3A%20Day%20turns%20to%20night%21&amp;annotation=A%20quick%20photoshop%20video%20tutorial%20to%20convert%20day%20pictures%2Fimages%20into%20night%20pictures%2Fimages.%20Pretty%20Simple%20and%20straight%20forward.%20%0D%0A%0D%0A%0D%0A%20" title="Google Bookmarks"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Fdomainfunk.com%2Fphotoshop-day-turns-to-night&amp;title=Photoshop%3A%20Day%20turns%20to%20night%21&amp;notes=A%20quick%20photoshop%20video%20tutorial%20to%20convert%20day%20pictures%2Fimages%20into%20night%20pictures%2Fimages.%20Pretty%20Simple%20and%20straight%20forward.%20%0D%0A%0D%0A%0D%0A%20" title="del.icio.us"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="" title="TwitThis"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/" title="TwitThis" alt="TwitThis" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fdomainfunk.com%2Fphotoshop-day-turns-to-night&amp;t=Photoshop%3A%20Day%20turns%20to%20night%21" title="Facebook"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="http://technorati.com/faves?add=http%3A%2F%2Fdomainfunk.com%2Fphotoshop-day-turns-to-night" title="Technorati"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fdomainfunk.com%2Fphotoshop-day-turns-to-night&amp;title=Photoshop%3A%20Day%20turns%20to%20night%21" title="StumbleUpon"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="mailto:?subject=Photoshop%3A%20Day%20turns%20to%20night%21&amp;body=http%3A%2F%2Fdomainfunk.com%2Fphotoshop-day-turns-to-night" title="E-mail this story to a friend!"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/email_link.png" title="E-mail this story to a friend!" alt="E-mail this story to a friend!" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fdomainfunk.com%2Fphotoshop-day-turns-to-night&amp;title=Photoshop%3A%20Day%20turns%20to%20night%21&amp;source=DomainFunk.com+A+Magazine+for+webconnoissuers&amp;summary=A%20quick%20photoshop%20video%20tutorial%20to%20convert%20day%20pictures%2Fimages%20into%20night%20pictures%2Fimages.%20Pretty%20Simple%20and%20straight%20forward.%20%0D%0A%0D%0A%0D%0A%20" title="LinkedIn"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="https://favorites.live.com/quickadd.aspx?marklet=1&amp;url=http%3A%2F%2Fdomainfunk.com%2Fphotoshop-day-turns-to-night&amp;title=Photoshop%3A%20Day%20turns%20to%20night%21" title="Live"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/live.png" title="Live" alt="Live" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="" title="Ma.gnolia"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/" title="Ma.gnolia" alt="Ma.gnolia" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="http://www.myspace.com/Modules/PostTo/Pages/?u=http%3A%2F%2Fdomainfunk.com%2Fphotoshop-day-turns-to-night&amp;t=Photoshop%3A%20Day%20turns%20to%20night%21" title="MySpace"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/myspace.png" title="MySpace" alt="MySpace" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="http://buzz.yahoo.com/submit/?submitUrl=http%3A%2F%2Fdomainfunk.com%2Fphotoshop-day-turns-to-night&amp;submitHeadline=Photoshop%3A%20Day%20turns%20to%20night%21&amp;submitSummary=A%20quick%20photoshop%20video%20tutorial%20to%20convert%20day%20pictures%2Fimages%20into%20night%20pictures%2Fimages.%20Pretty%20Simple%20and%20straight%20forward.%20%0D%0A%0D%0A%0D%0A%20&amp;submitCategory=science&amp;submitAssetType=text" title="Yahoo! Buzz"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/yahoobuzz.png" title="Yahoo! Buzz" alt="Yahoo! Buzz" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="http://yigg.de/neu?exturl=http%3A%2F%2Fdomainfunk.com%2Fphotoshop-day-turns-to-night&amp;exttitle=Photoshop%3A%20Day%20turns%20to%20night%21" title="Yigg"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/yiggit.png" title="Yigg" alt="Yigg" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="http://sphinn.com/submit.php?url=http%3A%2F%2Fdomainfunk.com%2Fphotoshop-day-turns-to-night&amp;title=Photoshop%3A%20Day%20turns%20to%20night%21" title="Sphinn"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/sphinn.png" title="Sphinn" alt="Sphinn" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="http://www.mixx.com/submit?page_url=http%3A%2F%2Fdomainfunk.com%2Fphotoshop-day-turns-to-night&amp;title=Photoshop%3A%20Day%20turns%20to%20night%21" title="Mixx"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/mixx.png" title="Mixx" alt="Mixx" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="http://blogmarks.net/my/new.php?mini=1&amp;simple=1&amp;url=http%3A%2F%2Fdomainfunk.com%2Fphotoshop-day-turns-to-night&amp;title=Photoshop%3A%20Day%20turns%20to%20night%21" title="blogmarks"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/blogmarks.png" title="blogmarks" alt="blogmarks" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="http://cimlap.blogter.hu/index.php?action=suggest_link&amp;title=Photoshop%3A%20Day%20turns%20to%20night%21&amp;url=http%3A%2F%2Fdomainfunk.com%2Fphotoshop-day-turns-to-night" title="blogtercimlap"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/blogter.png" title="blogtercimlap" alt="blogtercimlap" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="" title="Book.mark.hu"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/" title="Book.mark.hu" alt="Book.mark.hu" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="http://co.mments.com/track?url=http%3A%2F%2Fdomainfunk.com%2Fphotoshop-day-turns-to-night&amp;title=Photoshop%3A%20Day%20turns%20to%20night%21" title="co.mments"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/co.mments.png" title="co.mments" alt="co.mments" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="" title="De.lirio.us"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/" title="De.lirio.us" alt="De.lirio.us" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="http://www.dotnetkicks.com/kick/?url=http%3A%2F%2Fdomainfunk.com%2Fphotoshop-day-turns-to-night&amp;title=Photoshop%3A%20Day%20turns%20to%20night%21" title="DotNetKicks"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/dotnetkicks.png" title="DotNetKicks" alt="DotNetKicks" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="http://www.linkagogo.com/go/AddNoPopup?url=http%3A%2F%2Fdomainfunk.com%2Fphotoshop-day-turns-to-night&amp;title=Photoshop%3A%20Day%20turns%20to%20night%21" title="LinkaGoGo"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/linkagogo.png" title="LinkaGoGo" alt="LinkaGoGo" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="http://www.newsvine.com/_tools/seed&amp;save?u=http%3A%2F%2Fdomainfunk.com%2Fphotoshop-day-turns-to-night&amp;h=Photoshop%3A%20Day%20turns%20to%20night%21" title="NewsVine"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/newsvine.png" title="NewsVine" alt="NewsVine" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="http://reddit.com/submit?url=http%3A%2F%2Fdomainfunk.com%2Fphotoshop-day-turns-to-night&amp;title=Photoshop%3A%20Day%20turns%20to%20night%21" title="Reddit"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/reddit.png" title="Reddit" alt="Reddit" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="" title="scuttle"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/" title="scuttle" alt="scuttle" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="" title="Spurl"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/" title="Spurl" alt="Spurl" class="sociable-hovers" /></a></li>
	<li class="sociablelast"><a rel="nofollow" target="_blank" href="" title="YahooMyWeb"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/" title="YahooMyWeb" alt="YahooMyWeb" class="sociable-hovers" /></a></li>
</ul>
</div>
]]></content:encoded>
			<wfw:commentRss>http://domainfunk.com/photoshop-day-turns-to-night/feed</wfw:commentRss>
		</item>
		<item>
		<title>How-to: Javascript Inheritance</title>
		<link>http://domainfunk.com/how-to-javascript-inheritance</link>
		<comments>http://domainfunk.com/how-to-javascript-inheritance#comments</comments>
		<pubDate>Mon, 05 Jan 2009 21:09:49 +0000</pubDate>
		<dc:creator>DomainFunk.com</dc:creator>
		
		<category><![CDATA[How-To's]]></category>

		<category><![CDATA[javascript]]></category>

		<category><![CDATA[javascript howto]]></category>

		<category><![CDATA[javascript inheritance]]></category>

		<category><![CDATA[web javascript]]></category>

		<guid isPermaLink="false">http://domainfunk.com/?p=174</guid>
		<description><![CDATA[  Many of us, still are scared of using javascript. Some of us think that Javascript has become outdated, yet a larger, more “hard core” webmasters love it and have evolved with it, in to ajax, etc. But, personally, when I started learning Javascript back in the 1995&#8217;s, it was extremely intimidating, with me [...]]]></description>
			<content:encoded><![CDATA[<!-- This is a HTML comment, it will not display in any page. Feel free to remove this comment if it cause any inconvenient to you.
	Thanks for using digg digg, please visit http://www.mkyong.com/blog/digg-digg-wordpress-plugin for any comments and ideas, 
	
    Author : Yong Mook Kim
    Website : http://www.mkyong.com
	--><div style='float:right'><table> <td><iframe src='http://digg.com/api/diggthis.php?w=new&amp;u=http://domainfunk.com/how-to-javascript-inheritance&amp;t=How-to%3A+Javascript+Inheritance++&amp;s=normal' height='80' width='52' frameborder='0' scrolling='no'></iframe></td> <td><iframe src='http://www.reddit.com/button_content?newwindow=1&amp;url=http://domainfunk.com/how-to-javascript-inheritance&amp;title=How-to%3A+Javascript+Inheritance++&amp;t=2 ' height='80' width='52' scrolling='no' frameborder='0' ></iframe></td></table></div><p>Many of us, still are scared of using javascript. Some of us think that Javascript has become outdated, yet a larger, more “hard core” webmasters love it and have evolved with it, in to ajax, etc. But, personally, when I started learning Javascript back in the 1995&#8217;s, it was extremely intimidating, with me still being in college and still learning how to write small functions with it, which would validate a user input form.</p>
<p>However, as time went on by I fell for it and today, I am still deeply in love it. I also love the way it has evolved and has made Ajax, jQuery, etc happen! So this article would be more so about an intermediate Javascript article, explaining inheritance within Javascript.</p>
<h1>Javascript and the Concept of Inheritance</h1>
<p>There are two popular ways of working with Javascript and the concept of Inheritance. Out of these the first and the more popular way of working with inheritance is known as the “prototype way”. Its much easier to understand if you try it with a blank and open mind.</p>
<h1>Javascript Inheritance - Prototyping</h1>
<p>The prototype way or prototyping a class, usually deals with using a function prototype instead of a class. What I mean is, that using a prototype or syntax of a class definition, we use the same prototype, that of a fuction to define a class in javascript.</p>
<p>For instance</p>
<p><code> function Iam () {<br />
        this.alive = true;<br />
}<br />
Iam.prototype.notdead = function () {<br />
        return true;</p>
<p>};<br />
</code></p>
<p>An Object that would inherit Iam:</p>
<p><code><br />
Dave.prototype = new Iam;<br />
function Dave () {<br />
        this.writes = true;<br />
}<br />
Dave.prototype.getsBored = function () {<br />
        return "Never!";<br />
};<br />
</code></p>
<p>Now, if we create an instance of Dave object, and call its member methods, the result would be:</p>
<p><code>// Create an instance of the Dave object<br />
var me = new Dave();</p>
<p>me.getsBored();<br />
/*<br />
        Returns "Never!" as it's a method<br />
        belonging to the Dave object<br />
*/</p>
<p>me.breathes();<br />
/*<br />
        Returns true. Since the Davet object<br />
        doesn't have a breathes method of<br />
        its own, it goes back in the<br />
        prototype chain to its parent<br />
        object, Iam, and finds the<br />
        method there<br />
*/</p>
<p></code></p>
<h1>Javascript Inheritance: Calling a parent member method.</h1>
<p>If you want to call the member method that was overiden in the child class, from the parent class or (let me put in a better way) – if you want to call a super method for an object, this is how it would be called.<br />
<code><br />
Dave.prototype.getsBored = function ( ) {<br />
Iam.prototype.getsBored.call(this);<br />
return “Never1”;<br />
/* all we have to do is call the member method from the parent class, and for that all we need to know is the syntax, as stated above, the name of the class and the name of the member method we want to access and use */<br />
};</code></p>
<h1>Direction two: Javascript Inheritance</h1>
<p>The second way of using Javascript Inheritance is one in which we mimic class-based inheritance. Using this alternative of Javascript Inheritance, most developers and webmasters would feel comfortable if they have been exposed to other OOP languages and are coming from an OOP background. For most webmasters for whom languages like Java, C++, etc are new, the above mentioned method of using Javascript Inheritance would suffice.<br />
Mimicking Class Based Inheritance in Javascript</p>
<p>For class based inheritance, the above code then translates to:</p>
<p><code>var Iam = Class.extend({ breathing : true; lives function ()<br />
{ return true; }<br />
});<br />
var Dave = Iam.extend({ writes : true; getsBored() : function {return “Never!”;}<br />
});<br />
var me = new Dave();<br />
me.getsbored();<br />
me.lives();<br />
</code></p>
<h1>Javascript Inheritance and Super Calls</h1>
<p>Normal scripting with Javascript and advanced javascript libraries, one may almost never use super calls, because you may never feel the need. However, if your programing schema is such that you have to, then you could use super calls. Be advised that alot of super calls, espcially in javascript are not recommended due to code optimizations.</p>
<h1>Syntax to use?</h1>
<p>While both syntaxes or methods describe above are fairly easy, it really depends on your background as a webmaster and which way you feel comfortable. Using the prototype syntax is fairly a good idea, because its more native to javascript compiler, and has no dependencies or extra code, it is easily readable and more precise as to what is happening between the lines, pun intended! So, my personal favorite would be the prototype method.<br />
Need for Javascript Inheritance?</p>
<p>I would go ahead suggest this, use javascript inheritance only when you know you should, don&#8217;t just use it because its available.  Most newbie webmasters use javascript inheritance alot and tend to overuse, where it may not be used at all! If you are new and are looking to start with a syntax pattern that you can adhere to, I would strongly recommend The Yahoo Javascript Patter@ http://yuiblog.com/blog/2007/06/12/module-pattern/</p>
<h1>Javascript Inheritance Resources</h1>
<p>Definitive Guide to Javascript Inheritance@ http://books.google.com/books?id=2weL0iAfrEMC&#038;pg=PA167&#038;dq=prototype+inheritance+in+javascript&#038;sig=ACfU3U1S1YegUWWwIFPqlEWCgMvQv3kSgQ#PPA151,M1</p>
<p>Simple JavaScript Inheritance - John Resig@ http://ejohn.org/blog/simple-javascript-inheritance/</p>
<p>Base of Javascript Inheritance@ http://dean.edwards.name/weblog/2006/03/base/</p>
<p>Defining classes and inheritance - Prototype JavaScript Framewor@ http://prototypejs.org/learn/class-inheritance</p>

<div class="sociable">
<div class="sociable_tagline">
<strong>Enjoyed it? Share it!:</strong>
</div>
<ul>
	<li class="sociablefirst"><a rel="nofollow" target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fdomainfunk.com%2Fhow-to-javascript-inheritance&amp;title=How-to%3A%20Javascript%20Inheritance%20%20&amp;bodytext=Many%20of%20us%2C%20still%20are%20scared%20of%20using%20javascript.%20Some%20of%20us%20think%20that%20Javascript%20has%20become%20outdated%2C%20yet%20a%20larger%2C%20more%20%E2%80%9Chard%20core%E2%80%9D%20webmasters%20love%20it%20and%20have%20evolved%20with%20it%2C%20in%20to%20ajax%2C%20etc.%20But%2C%20personally%2C%20when%20I%20started%20learning%20Javascri" title="Digg"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fdomainfunk.com%2Fhow-to-javascript-inheritance&amp;title=How-to%3A%20Javascript%20Inheritance%20%20&amp;annotation=Many%20of%20us%2C%20still%20are%20scared%20of%20using%20javascript.%20Some%20of%20us%20think%20that%20Javascript%20has%20become%20outdated%2C%20yet%20a%20larger%2C%20more%20%E2%80%9Chard%20core%E2%80%9D%20webmasters%20love%20it%20and%20have%20evolved%20with%20it%2C%20in%20to%20ajax%2C%20etc.%20But%2C%20personally%2C%20when%20I%20started%20learning%20Javascri" title="Google Bookmarks"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Fdomainfunk.com%2Fhow-to-javascript-inheritance&amp;title=How-to%3A%20Javascript%20Inheritance%20%20&amp;notes=Many%20of%20us%2C%20still%20are%20scared%20of%20using%20javascript.%20Some%20of%20us%20think%20that%20Javascript%20has%20become%20outdated%2C%20yet%20a%20larger%2C%20more%20%E2%80%9Chard%20core%E2%80%9D%20webmasters%20love%20it%20and%20have%20evolved%20with%20it%2C%20in%20to%20ajax%2C%20etc.%20But%2C%20personally%2C%20when%20I%20started%20learning%20Javascri" title="del.icio.us"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="" title="TwitThis"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/" title="TwitThis" alt="TwitThis" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fdomainfunk.com%2Fhow-to-javascript-inheritance&amp;t=How-to%3A%20Javascript%20Inheritance%20%20" title="Facebook"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="http://technorati.com/faves?add=http%3A%2F%2Fdomainfunk.com%2Fhow-to-javascript-inheritance" title="Technorati"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fdomainfunk.com%2Fhow-to-javascript-inheritance&amp;title=How-to%3A%20Javascript%20Inheritance%20%20" title="StumbleUpon"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="mailto:?subject=How-to%3A%20Javascript%20Inheritance%20%20&amp;body=http%3A%2F%2Fdomainfunk.com%2Fhow-to-javascript-inheritance" title="E-mail this story to a friend!"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/email_link.png" title="E-mail this story to a friend!" alt="E-mail this story to a friend!" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fdomainfunk.com%2Fhow-to-javascript-inheritance&amp;title=How-to%3A%20Javascript%20Inheritance%20%20&amp;source=DomainFunk.com+A+Magazine+for+webconnoissuers&amp;summary=Many%20of%20us%2C%20still%20are%20scared%20of%20using%20javascript.%20Some%20of%20us%20think%20that%20Javascript%20has%20become%20outdated%2C%20yet%20a%20larger%2C%20more%20%E2%80%9Chard%20core%E2%80%9D%20webmasters%20love%20it%20and%20have%20evolved%20with%20it%2C%20in%20to%20ajax%2C%20etc.%20But%2C%20personally%2C%20when%20I%20started%20learning%20Javascri" title="LinkedIn"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="https://favorites.live.com/quickadd.aspx?marklet=1&amp;url=http%3A%2F%2Fdomainfunk.com%2Fhow-to-javascript-inheritance&amp;title=How-to%3A%20Javascript%20Inheritance%20%20" title="Live"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/live.png" title="Live" alt="Live" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="" title="Ma.gnolia"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/" title="Ma.gnolia" alt="Ma.gnolia" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="http://www.myspace.com/Modules/PostTo/Pages/?u=http%3A%2F%2Fdomainfunk.com%2Fhow-to-javascript-inheritance&amp;t=How-to%3A%20Javascript%20Inheritance%20%20" title="MySpace"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/myspace.png" title="MySpace" alt="MySpace" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="http://buzz.yahoo.com/submit/?submitUrl=http%3A%2F%2Fdomainfunk.com%2Fhow-to-javascript-inheritance&amp;submitHeadline=How-to%3A%20Javascript%20Inheritance%20%20&amp;submitSummary=Many%20of%20us%2C%20still%20are%20scared%20of%20using%20javascript.%20Some%20of%20us%20think%20that%20Javascript%20has%20become%20outdated%2C%20yet%20a%20larger%2C%20more%20%E2%80%9Chard%20core%E2%80%9D%20webmasters%20love%20it%20and%20have%20evolved%20with%20it%2C%20in%20to%20ajax%2C%20etc.%20But%2C%20personally%2C%20when%20I%20started%20learning%20Javascri&amp;submitCategory=science&amp;submitAssetType=text" title="Yahoo! Buzz"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/yahoobuzz.png" title="Yahoo! Buzz" alt="Yahoo! Buzz" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="http://yigg.de/neu?exturl=http%3A%2F%2Fdomainfunk.com%2Fhow-to-javascript-inheritance&amp;exttitle=How-to%3A%20Javascript%20Inheritance%20%20" title="Yigg"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/yiggit.png" title="Yigg" alt="Yigg" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="http://sphinn.com/submit.php?url=http%3A%2F%2Fdomainfunk.com%2Fhow-to-javascript-inheritance&amp;title=How-to%3A%20Javascript%20Inheritance%20%20" title="Sphinn"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/sphinn.png" title="Sphinn" alt="Sphinn" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="http://www.mixx.com/submit?page_url=http%3A%2F%2Fdomainfunk.com%2Fhow-to-javascript-inheritance&amp;title=How-to%3A%20Javascript%20Inheritance%20%20" title="Mixx"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/mixx.png" title="Mixx" alt="Mixx" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="http://blogmarks.net/my/new.php?mini=1&amp;simple=1&amp;url=http%3A%2F%2Fdomainfunk.com%2Fhow-to-javascript-inheritance&amp;title=How-to%3A%20Javascript%20Inheritance%20%20" title="blogmarks"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/blogmarks.png" title="blogmarks" alt="blogmarks" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="http://cimlap.blogter.hu/index.php?action=suggest_link&amp;title=How-to%3A%20Javascript%20Inheritance%20%20&amp;url=http%3A%2F%2Fdomainfunk.com%2Fhow-to-javascript-inheritance" title="blogtercimlap"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/blogter.png" title="blogtercimlap" alt="blogtercimlap" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="" title="Book.mark.hu"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/" title="Book.mark.hu" alt="Book.mark.hu" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="http://co.mments.com/track?url=http%3A%2F%2Fdomainfunk.com%2Fhow-to-javascript-inheritance&amp;title=How-to%3A%20Javascript%20Inheritance%20%20" title="co.mments"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/co.mments.png" title="co.mments" alt="co.mments" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="" title="De.lirio.us"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/" title="De.lirio.us" alt="De.lirio.us" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="http://www.dotnetkicks.com/kick/?url=http%3A%2F%2Fdomainfunk.com%2Fhow-to-javascript-inheritance&amp;title=How-to%3A%20Javascript%20Inheritance%20%20" title="DotNetKicks"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/dotnetkicks.png" title="DotNetKicks" alt="DotNetKicks" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="http://www.linkagogo.com/go/AddNoPopup?url=http%3A%2F%2Fdomainfunk.com%2Fhow-to-javascript-inheritance&amp;title=How-to%3A%20Javascript%20Inheritance%20%20" title="LinkaGoGo"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/linkagogo.png" title="LinkaGoGo" alt="LinkaGoGo" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="http://www.newsvine.com/_tools/seed&amp;save?u=http%3A%2F%2Fdomainfunk.com%2Fhow-to-javascript-inheritance&amp;h=How-to%3A%20Javascript%20Inheritance%20%20" title="NewsVine"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/newsvine.png" title="NewsVine" alt="NewsVine" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="http://reddit.com/submit?url=http%3A%2F%2Fdomainfunk.com%2Fhow-to-javascript-inheritance&amp;title=How-to%3A%20Javascript%20Inheritance%20%20" title="Reddit"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/reddit.png" title="Reddit" alt="Reddit" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="" title="scuttle"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/" title="scuttle" alt="scuttle" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="" title="Spurl"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/" title="Spurl" alt="Spurl" class="sociable-hovers" /></a></li>
	<li class="sociablelast"><a rel="nofollow" target="_blank" href="" title="YahooMyWeb"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/" title="YahooMyWeb" alt="YahooMyWeb" class="sociable-hovers" /></a></li>
</ul>
</div>
]]></content:encoded>
			<wfw:commentRss>http://domainfunk.com/how-to-javascript-inheritance/feed</wfw:commentRss>
		</item>
		<item>
		<title>How To - SSL</title>
		<link>http://domainfunk.com/how-to-ssl</link>
		<comments>http://domainfunk.com/how-to-ssl#comments</comments>
		<pubDate>Fri, 28 Nov 2008 21:09:08 +0000</pubDate>
		<dc:creator>DomainFunk.com</dc:creator>
		
		<category><![CDATA[How-To's]]></category>

		<category><![CDATA[Digital Certificate]]></category>

		<category><![CDATA[How SSL]]></category>

		<category><![CDATA[Secure Sockets Layer]]></category>

		<category><![CDATA[SSL]]></category>

		<category><![CDATA[SSL Certificate]]></category>

		<category><![CDATA[SSL info]]></category>

		<guid isPermaLink="false">http://domainfunk.com/?p=100</guid>
		<description><![CDATA[  What is SSL?
Short for Secure Sockets Layer, SSL is a protocol or a set of rules that was “invented” or released by NetScape. These suite of rules or protocols are still used to ensure that transactions over the internet, namely, between the webservers and the browsers, are carried out securely. 
The SSL set [...]]]></description>
			<content:encoded><![CDATA[<!-- This is a HTML comment, it will not display in any page. Feel free to remove this comment if it cause any inconvenient to you.
	Thanks for using digg digg, please visit http://www.mkyong.com/blog/digg-digg-wordpress-plugin for any comments and ideas, 
	
    Author : Yong Mook Kim
    Website : http://www.mkyong.com
	--><div style='float:right'><table> <td><iframe src='http://digg.com/api/diggthis.php?w=new&amp;u=http://domainfunk.com/how-to-ssl&amp;t=How+To+-+SSL&amp;s=normal' height='80' width='52' frameborder='0' scrolling='no'></iframe></td> <td><iframe src='http://www.reddit.com/button_content?newwindow=1&amp;url=http://domainfunk.com/how-to-ssl&amp;title=How+To+-+SSL&amp;t=2 ' height='80' width='52' scrolling='no' frameborder='0' ></iframe></td></table></div><h1>What is SSL?</h1>
<p><img src="http://domainfunk.com/wp-content/uploads/2008/11/ssl-300x240.jpg" alt="ssl, digital certificates, SSL howto" title="ssl, ssl certificates, digital certifices, ssl basics" width="300" height="240" class="alignleft size-medium wp-image-101" />Short for Secure Sockets Layer, SSL is a protocol or a set of rules that was “invented” or released by NetScape. These suite of rules or protocols are still used to ensure that transactions over the internet, namely, between the webservers and the browsers, are carried out securely. </p>
<p>The SSL set of rules or protocols, work with identifying the entities involved in the transaction, again the webserver and/or the webbrowser, using a Certification Authority or CA.  SSL is mainly used for securely transferring documents via the internet. <br/><br/><br/></p>
<h1>Why SSL?</h1>
<p>As stated above, SSL or Secure Sockets Layer provides an interface for the internet user(s) to securely transmit document or any data using the browser and the webserver. </p>
<p>This is achieved using Encryption/Decryption technologies along with “certificates” of authenticity provided by a certification authority. </p>
<h1>How does SSL Work?</h1>
<p>SSL works on the principles of encryption and decryption. SSL works on public key/private key encryption algorithms, which means that encryption can be done using only one key and decryption at the target destination would require a key pair. Essentialy this means that with every SSL transaction there are two keys involved one that encrypts and  one that decrypts in conjuction with the key that was used to decrypt the document or data transmitted. It might be a confusing, but the concept is extremely simple.</p>
<p><strong>Step #1</strong> A client browser(basically web user) would request a secure website or secure webpage.</p>
<p><strong>Step #2</strong> A certificate, identifying the webserver is sent to the client browser along with a pubic key by the browser hosting this secure webpage or website.</p>
<p><strong>Step #3</strong> The client browser checks the certificate to and authenticates the certificate with the help of the Certification Authority. It also checks if the certificate is still valid and its validation hasn’t expired and the certificate belongs to website or webpage requested. </p>
<p><strong>Step #4</strong> After the above step has been completed and the certificate is validated, the client browser uses the public key to encrypt the data or document to be transmitted. The destination URL is also encrypted. After encryption has been completed, the data or document is transmitted.</p>
<p><strong>Step #5</strong> The webserver hosting the secured website or webpage then decrypts the encrypted data or document using a private key only available to the server, in conjunction with the public key.</p>
<p><strong>Step #6</strong> The webserver then sends in the requested data which is again encrypted using the symmetric or public key.</p>
<p><strong>Step #7</strong> The client browser decrypts the data and makes it available to the internet user. </p>
<p>[Data/Request]&#8211;>[Public Key]&#8211;>Encrypted Data&#8211;>[Private Key]&#8211;>[Message]</p>
<h1>So, what do you get?</h1>
<p>Every communication, using the internet, may it be emails or payments via credit cards, has a “route” or a relay and is relayed between eight to thirty two (8-32) servers before it reaches its destination. Every such “relay” or stop over server could be vulnerable to attack or might already may have been penetrated. Thence, every such point or “relay” would be a security risk where your personal data is concerned. Every such “relay” would be a gateway for viruses, hackers, phishers, malicious scripts; many of which can intercept your personal data at any given time and could make copies of it, or even alter it leading to identity theft or even more!</p>
<p>So, instead of the placing the security burden on to you as an internet user, now the burden of security falls with the CA, the webserver and the client browser. Which essentially decide if its secure enough to transmit your personal data using the internet. This is only possible with the use of SSL or SSL Certificates.</p>
<p>What is more interesting is that more than 90% of internet users have come across a security alert! And a major chunk of such users, IGNORE such security alerts, taking their internet browsing and usage for granted. Another big chunk just stop browsing such websites.</p>
<p>So if you are an internet user, we would advise you to pay attention to such warnings and if you are a webmaster or if you have an online business we would strongly advise you to get an SSL certificate today. A secure connection definitely means a secure web browsing experience for online shoppers, business owners, general internet users. </p>
<p>Digital Certificates or SSL Certificates do not cost much and easy to setup and provide a better, a very secure experience for all internet users and website owners, webmasters are strongly urged to get these setup on your websites. Why Compromise on Security, right?</p>
<p>SSL certificates or Digital Certificates, is just one of the many steps that can be take to make the internet a more secure place. </p>
<p>It would be wise to know that SSL’s predecessor is here, and is known as “TLS” or Transport Layer Security.</p>
<h1>SSL Resources</h1>
<p>http://tldp.org/HOWTO/SSL-Certificates-HOWTO/c118.html<br />
http://www.webopedia.com/DidYouKnow/Internet/2008/SSL.asp<br />
http://en.wikipedia.org/wiki/Transport_Layer_Security<br />
http://www.mozilla.org/projects/security/pki/nss/ssl/draft302.txt<br />
http://en.wikipedia.org/wiki/OpenSSL<br />
http://www.openssl.org/</p>

<div class="sociable">
<div class="sociable_tagline">
<strong>Enjoyed it? Share it!:</strong>
</div>
<ul>
	<li class="sociablefirst"><a rel="nofollow" target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fdomainfunk.com%2Fhow-to-ssl&amp;title=How%20To%20-%20SSL&amp;bodytext=What%20is%20SSL%3F%0D%0A%0D%0AShort%20for%20Secure%20Sockets%20Layer%2C%20SSL%20is%20a%20protocol%20or%20a%20set%20of%20rules%20that%20was%20%E2%80%9Cinvented%E2%80%9D%20or%20released%20by%20NetScape.%20These%20suite%20of%20rules%20or%20protocols%20are%20still%20used%20to%20ensure%20that%20transactions%20over%20the%20internet%2C%20namely%2C%20between%20the%20w" title="Digg"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fdomainfunk.com%2Fhow-to-ssl&amp;title=How%20To%20-%20SSL&amp;annotation=What%20is%20SSL%3F%0D%0A%0D%0AShort%20for%20Secure%20Sockets%20Layer%2C%20SSL%20is%20a%20protocol%20or%20a%20set%20of%20rules%20that%20was%20%E2%80%9Cinvented%E2%80%9D%20or%20released%20by%20NetScape.%20These%20suite%20of%20rules%20or%20protocols%20are%20still%20used%20to%20ensure%20that%20transactions%20over%20the%20internet%2C%20namely%2C%20between%20the%20w" title="Google Bookmarks"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Fdomainfunk.com%2Fhow-to-ssl&amp;title=How%20To%20-%20SSL&amp;notes=What%20is%20SSL%3F%0D%0A%0D%0AShort%20for%20Secure%20Sockets%20Layer%2C%20SSL%20is%20a%20protocol%20or%20a%20set%20of%20rules%20that%20was%20%E2%80%9Cinvented%E2%80%9D%20or%20released%20by%20NetScape.%20These%20suite%20of%20rules%20or%20protocols%20are%20still%20used%20to%20ensure%20that%20transactions%20over%20the%20internet%2C%20namely%2C%20between%20the%20w" title="del.icio.us"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="" title="TwitThis"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/" title="TwitThis" alt="TwitThis" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fdomainfunk.com%2Fhow-to-ssl&amp;t=How%20To%20-%20SSL" title="Facebook"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="http://technorati.com/faves?add=http%3A%2F%2Fdomainfunk.com%2Fhow-to-ssl" title="Technorati"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fdomainfunk.com%2Fhow-to-ssl&amp;title=How%20To%20-%20SSL" title="StumbleUpon"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="mailto:?subject=How%20To%20-%20SSL&amp;body=http%3A%2F%2Fdomainfunk.com%2Fhow-to-ssl" title="E-mail this story to a friend!"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/email_link.png" title="E-mail this story to a friend!" alt="E-mail this story to a friend!" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fdomainfunk.com%2Fhow-to-ssl&amp;title=How%20To%20-%20SSL&amp;source=DomainFunk.com+A+Magazine+for+webconnoissuers&amp;summary=What%20is%20SSL%3F%0D%0A%0D%0AShort%20for%20Secure%20Sockets%20Layer%2C%20SSL%20is%20a%20protocol%20or%20a%20set%20of%20rules%20that%20was%20%E2%80%9Cinvented%E2%80%9D%20or%20released%20by%20NetScape.%20These%20suite%20of%20rules%20or%20protocols%20are%20still%20used%20to%20ensure%20that%20transactions%20over%20the%20internet%2C%20namely%2C%20between%20the%20w" title="LinkedIn"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="https://favorites.live.com/quickadd.aspx?marklet=1&amp;url=http%3A%2F%2Fdomainfunk.com%2Fhow-to-ssl&amp;title=How%20To%20-%20SSL" title="Live"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/live.png" title="Live" alt="Live" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="" title="Ma.gnolia"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/" title="Ma.gnolia" alt="Ma.gnolia" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="http://www.myspace.com/Modules/PostTo/Pages/?u=http%3A%2F%2Fdomainfunk.com%2Fhow-to-ssl&amp;t=How%20To%20-%20SSL" title="MySpace"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/myspace.png" title="MySpace" alt="MySpace" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="http://buzz.yahoo.com/submit/?submitUrl=http%3A%2F%2Fdomainfunk.com%2Fhow-to-ssl&amp;submitHeadline=How%20To%20-%20SSL&amp;submitSummary=What%20is%20SSL%3F%0D%0A%0D%0AShort%20for%20Secure%20Sockets%20Layer%2C%20SSL%20is%20a%20protocol%20or%20a%20set%20of%20rules%20that%20was%20%E2%80%9Cinvented%E2%80%9D%20or%20released%20by%20NetScape.%20These%20suite%20of%20rules%20or%20protocols%20are%20still%20used%20to%20ensure%20that%20transactions%20over%20the%20internet%2C%20namely%2C%20between%20the%20w&amp;submitCategory=science&amp;submitAssetType=text" title="Yahoo! Buzz"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/yahoobuzz.png" title="Yahoo! Buzz" alt="Yahoo! Buzz" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="http://yigg.de/neu?exturl=http%3A%2F%2Fdomainfunk.com%2Fhow-to-ssl&amp;exttitle=How%20To%20-%20SSL" title="Yigg"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/yiggit.png" title="Yigg" alt="Yigg" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="http://sphinn.com/submit.php?url=http%3A%2F%2Fdomainfunk.com%2Fhow-to-ssl&amp;title=How%20To%20-%20SSL" title="Sphinn"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/sphinn.png" title="Sphinn" alt="Sphinn" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="http://www.mixx.com/submit?page_url=http%3A%2F%2Fdomainfunk.com%2Fhow-to-ssl&amp;title=How%20To%20-%20SSL" title="Mixx"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/mixx.png" title="Mixx" alt="Mixx" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="http://blogmarks.net/my/new.php?mini=1&amp;simple=1&amp;url=http%3A%2F%2Fdomainfunk.com%2Fhow-to-ssl&amp;title=How%20To%20-%20SSL" title="blogmarks"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/blogmarks.png" title="blogmarks" alt="blogmarks" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="http://cimlap.blogter.hu/index.php?action=suggest_link&amp;title=How%20To%20-%20SSL&amp;url=http%3A%2F%2Fdomainfunk.com%2Fhow-to-ssl" title="blogtercimlap"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/blogter.png" title="blogtercimlap" alt="blogtercimlap" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="" title="Book.mark.hu"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/" title="Book.mark.hu" alt="Book.mark.hu" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="http://co.mments.com/track?url=http%3A%2F%2Fdomainfunk.com%2Fhow-to-ssl&amp;title=How%20To%20-%20SSL" title="co.mments"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/co.mments.png" title="co.mments" alt="co.mments" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="" title="De.lirio.us"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/" title="De.lirio.us" alt="De.lirio.us" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="http://www.dotnetkicks.com/kick/?url=http%3A%2F%2Fdomainfunk.com%2Fhow-to-ssl&amp;title=How%20To%20-%20SSL" title="DotNetKicks"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/dotnetkicks.png" title="DotNetKicks" alt="DotNetKicks" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="http://www.linkagogo.com/go/AddNoPopup?url=http%3A%2F%2Fdomainfunk.com%2Fhow-to-ssl&amp;title=How%20To%20-%20SSL" title="LinkaGoGo"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/linkagogo.png" title="LinkaGoGo" alt="LinkaGoGo" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="http://www.newsvine.com/_tools/seed&amp;save?u=http%3A%2F%2Fdomainfunk.com%2Fhow-to-ssl&amp;h=How%20To%20-%20SSL" title="NewsVine"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/newsvine.png" title="NewsVine" alt="NewsVine" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="http://reddit.com/submit?url=http%3A%2F%2Fdomainfunk.com%2Fhow-to-ssl&amp;title=How%20To%20-%20SSL" title="Reddit"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/reddit.png" title="Reddit" alt="Reddit" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="" title="scuttle"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/" title="scuttle" alt="scuttle" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="" title="Spurl"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/" title="Spurl" alt="Spurl" class="sociable-hovers" /></a></li>
	<li class="sociablelast"><a rel="nofollow" target="_blank" href="" title="YahooMyWeb"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/" title="YahooMyWeb" alt="YahooMyWeb" class="sociable-hovers" /></a></li>
</ul>
</div>
]]></content:encoded>
			<wfw:commentRss>http://domainfunk.com/how-to-ssl/feed</wfw:commentRss>
		</item>
		<item>
		<title>How to - Web Contact Forms</title>
		<link>http://domainfunk.com/how-to-web-contact-forms</link>
		<comments>http://domainfunk.com/how-to-web-contact-forms#comments</comments>
		<pubDate>Wed, 12 Nov 2008 22:12:31 +0000</pubDate>
		<dc:creator>DomainFunk.com</dc:creator>
		
		<category><![CDATA[How-To's]]></category>

		<category><![CDATA[contact forms]]></category>

		<category><![CDATA[CRM]]></category>

		<guid isPermaLink="false">http://domainfunk.com/?p=15</guid>
		<description><![CDATA[  The web has always been the foremost option to promote our enterprise or offers. But online promotion of our business is only half a job done. Today, with the internet reaching across homes and crossing all international borders and making the world more “flat”, it only makes sense to use its potential in [...]]]></description>
			<content:encoded><![CDATA[<!-- This is a HTML comment, it will not display in any page. Feel free to remove this comment if it cause any inconvenient to you.
	Thanks for using digg digg, please visit http://www.mkyong.com/blog/digg-digg-wordpress-plugin for any comments and ideas, 
	
    Author : Yong Mook Kim
    Website : http://www.mkyong.com
	--><div style='float:right'><table> <td><iframe src='http://digg.com/api/diggthis.php?w=new&amp;u=http://domainfunk.com/how-to-web-contact-forms&amp;t=How+to+-+Web+Contact+Forms&amp;s=normal' height='80' width='52' frameborder='0' scrolling='no'></iframe></td> <td><iframe src='http://www.reddit.com/button_content?newwindow=1&amp;url=http://domainfunk.com/how-to-web-contact-forms&amp;title=How+to+-+Web+Contact+Forms&amp;t=2 ' height='80' width='52' scrolling='no' frameborder='0' ></iframe></td></table></div><p><a href="#"><img src="http://domainfunk.com/wp-content/uploads/2008/11/contactforms1.jpg" alt="web contact forms, howto" title="contact forms" width="207" height="187" class="size-medium wp-image-26" align="left" style="padding-left:4px;"/></a>The web has always been the foremost option to promote our enterprise or offers. But online promotion of our business is only half a job done. Today, with the internet reaching across homes and crossing all international borders and making the world more “flat”, it only makes sense to use its potential in making our businesses and endeavors grow and make them visible to a global market. With websites becoming more and more interactive, it only makes sense to have an inbuilt, solid CRM or customer relationship management built in, within our websites. For starters, this can be achieved by the use of contact forms.<br/><br/><br/><br/></p>
<h1>Why Contact Forms?</h1>
<p>Contact forms enable your to-be clients to get in touch with you and to post feedback of your website, products and/or services. If you are a local business, thinking of getting a website, get one. A website with contact forms would make your business global, giving a global market audience a chance to interact with you, your employees and opt for your services or products.</p>
<p>Contact Forms ensure more visitors and to-be clients to know much more about your services and guarantee more leads for your products or services.</p>
<p>Most websites today have a “contact us” or “email us” section, using which most visitors get in touch with the business owners for further inquiries, questions, feedbacks, etc. More often than not, most websites just leave an email address exposed on such pages, while at the bottom of it all this works just fine where generating leads or getting feedbacks from customers or to-be customers are concerned, what it lacks is security. In such cases your email address is exposed to not just your customers but also “programs” or spammers, which collect these email addresses and spam your inbox.</p>
<p>A contact form, would definitely help prevent this situation and would definitely offer a better user experience.</p>
<h1>The Ideal Contact Form</h1>
<p>An ideal “contact us” webpage would have the name and address of the business owner or individual, with a form that would take generalized inputs from the user. On submitting such a form, the details would be mailed to you and the individual who had filled up the form. An ideal contact form would take Name, address, email and remarks/questions as inputs and would be effortless to the user as possible. Normally, such contact forms are built on the idea that the user visiting your website may not have time to fill in too many details. So these are kept short and sweet and right to the point.</p>
<h1>So….Contact Forms&#8230;.</h1>
<p>In simple words, a contact form ensures a secure medium of interaction between your business(you) and your potential market, in a global sense. A contact form is an extremely crucial step to be taken where your online business is concerned and would definitely increase your leads/sales by atleast ~8%. These and other benefits would be enough for any business online to put up contact forms. The only down side of such contact us forms, is people like to feel more secure when submitting personal information like their name, address and email address. This could be addressed by a “privacy policy” section on your website and it is highly recommended to have a privacy policy web page, as google is also known to count this in where SEO is concerned.</p>
<h1>How to create a contact form?</h1>
<p>Contact forms differ in structure depending upon the websites. A simple website would have a simple HTML form that would take in the text typed in the text fields by the user. A site may also have validations in such a contact form. These validations could be written in any scripting language like JavaScript, Ajax or PHP. This would make sure the visitor hasn’t sent incorrect data, i.e., the validations acts as constraints, and these constraints make sure that there are no blank fields and the email address submitted by a website user is valid. The validations show the form again with error messages only if errors are present, of course. We can use this to send a copy directly to the employees of the company or just to keep a back-up.</p>
<p>Anyone would be able to create a basic contact form of his or her own after some initial reading on HTML and Javascript. We must get familiar with the basic HTML tags first:</p>
<p>The &#8220;&lt;form&gt;&#8221; tag : helps create a form for the user input. It consists of a very important attribute that must be specified in the ‘&lt;&gt;’ of the form tag. It is the ‘action’ method. The URL is its value.</p>
<p>Optional attribute: ‘method’: helps to send data to the action URL. It takes two values: get and post.</p>
<p>The form tag must have a closing &#8220;&lt;/form&gt;&#8221; tag also.</p>
<p>Within the &#8220;&lt;form&gt;&#8221; and &#8220;&lt;/form&gt;&#8221;  tags, we place our textboxes and form submission buttons.</p>
<p>We have the &#8220;&lt;input&gt;&#8221; tag which defines the start of an input field where the user can enter data. This is where the interesting part of creating textboxes and buttons come into play. They are created depending on the attributes that are passed to the &#8220;&lt;input&gt;&#8221; tag.</p>
<p>To create a textbox we must pass the attribute ‘type=”text”’ and for a button pass ‘type=”button”’.</p>
<h1>Here is a HTML code snippet of a contact form.</h1>
<p>&lt;?php</p>
<p>$sysmail = &#8220;you@yourdomain.com&#8221;;</p>
<p>if ($_POST['sendmessage'])<br />
{<br />
if(!isset($_POST['message']))<br />
{<br />
$messages = &#8220;You&#8217;re email needs to contain a message, dummy!!!&lt;br&gt;&#8221;;<br />
}<br />
elseif(!preg_match(&#8221;/^.*?@.*?$/&#8221;, $_POST['email']))<br />
{<br />
$messages = &#8220;Stop trying to trick me and use a real email, or me and you will fall out!!&lt;br&gt;&#8221;;<br />
}<br />
elseif(mail($sysmail, stripslashes(trim($_POST['subject'])), stripslashes(trim($_POST['message'])), &#8220;From: &#8221; . $_POST['email'] . &#8220;\r\n&#8221;))<br />
{<br />
$messages = &#8220;Thanks for your message someone will get back to you shortly.&lt;br&gt;&#8221;;<br />
}<br />
else {<br />
$messages = &#8220;The programmer who wrote this isn&#8217;t as clever as he thinks, and something has gone wrong.&lt;br&gt;&#8221;;<br />
}<br />
}<br />
?&gt;<br />
&lt;h2&gt;Contact Form&lt;/h2&gt;<br />
&lt;form action=&#8221;" method=&#8221;post&#8221;&gt;<br />
&lt;span style=&#8221;color:#FF0000; font-weight:bold;&#8221;&gt;&lt;?=$messages ?&gt;&lt;/span&gt;<br />
&lt;table width=&#8221;50%&#8221; border=&#8221;0&#8243;&gt;<br />
&lt;tr&gt;<br />
&lt;td width=&#8221;50%&#8221; valign=&#8221;top&#8221;&gt;&lt;div align=&#8221;right&#8221;&gt;&lt;strong&gt;Your Email Address : &lt;/strong&gt;&lt;/div&gt;&lt;/td&gt;<br />
&lt;td width=&#8221;50%&#8221; valign=&#8221;top&#8221;&gt;&lt;input type=&#8221;ext&#8221; id=&#8221;email&#8221; name=&#8221;email&#8221; size=&#8221;50&#8243;/&gt;&lt;/td&gt;<br />
&lt;/tr&gt;<br />
&lt;tr&gt;<br />
&lt;td valign=&#8221;top&#8221;&gt;&lt;div align=&#8221;right&#8221;&gt;&lt;strong&gt;Message Subject : &lt;/strong&gt;&lt;/div&gt;&lt;/td&gt;<br />
&lt;td valign=&#8221;top&#8221;&gt;&lt;input type=&#8221;ext&#8221; id=&#8221;subject&#8221; name=&#8221;subject&#8221; size=&#8221;50&#8243;/&gt;&lt;/td&gt;<br />
&lt;/tr&gt;<br />
&lt;tr&gt;<br />
&lt;td valign=&#8221;top&#8221;&gt;&lt;div align=&#8221;right&#8221;&gt;&lt;strong&gt;Your Message &lt;/strong&gt;&lt;/div&gt;&lt;/td&gt;<br />
&lt;td valign=&#8221;top&#8221;&gt;&lt;textarea name=&#8221;message&#8221; cols=&#8221;50&#8243; rows=&#8221;10&#8243; id=&#8221;message&#8221;&gt;&lt;/textarea&gt;&lt;/td&gt;<br />
&lt;/tr&gt;<br />
&lt;tr&gt;<br />
&lt;td colspan=&#8221;2&#8243; valign=&#8221;top&#8221;&gt;&lt;div align=&#8221;center&#8221;&gt;<br />
&lt;input type=&#8221;submit&#8221; value=&#8221;Send Message&#8221;&gt;<br />
&lt;/div&gt;&lt;/td&gt;<br />
&lt;/tr&gt;<br />
&lt;/table&gt;<br />
&lt;input type=&#8221;hidden&#8221; name=&#8221;sendmessage&#8221; value=&#8221;1&#8243;&gt;<br />
&lt;/form&gt;</p>
<p>As you can see from the above Contact Form Code example, we have used php and HTML to create a simple form that would mail the details entered into the form to a predefined email address &#8216;you@yourdomain.com&#8217;. This form accepts, email address, message subject and message body as the input here. Your contact form input could vary and would be defined by your business logic. For more please feel free to look at the resources provided below.</p>
<h1>More Contact Form Resources</h1>
<p>A quick kickstart on getting such contact forms up and running on your website, without any prior html or web scripting experience would be to visit http://www.emailmeform.com/ or www.mycontactform.com</p>
<p>Full featured tutorial on contact forms @ http://www.htmlcodetutorial.com/forms/<br />
For more information to create contact forms please refer http://www.w3schools.com/html/default.asp</p>
<p>For more information on scripting languages please refer:<br />
http://www.w3schools.com/Vbscript/default.asp<br />
http://www.w3schools.com/js/default.asp<br />
http://www.tizag.com/phpT/</p>

<div class="sociable">
<div class="sociable_tagline">
<strong>Enjoyed it? Share it!:</strong>
</div>
<ul>
	<li class="sociablefirst"><a rel="nofollow" target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fdomainfunk.com%2Fhow-to-web-contact-forms&amp;title=How%20to%20-%20Web%20Contact%20Forms&amp;bodytext=The%20web%20has%20always%20been%20the%20foremost%20option%20to%20promote%20our%20enterprise%20or%20offers.%20But%20online%20promotion%20of%20our%20business%20is%20only%20half%20a%20job%20done.%20Today%2C%20with%20the%20internet%20reaching%20across%20homes%20and%20crossing%20all%20international%20borders%20and%20making%20the%20world%20" title="Digg"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fdomainfunk.com%2Fhow-to-web-contact-forms&amp;title=How%20to%20-%20Web%20Contact%20Forms&amp;annotation=The%20web%20has%20always%20been%20the%20foremost%20option%20to%20promote%20our%20enterprise%20or%20offers.%20But%20online%20promotion%20of%20our%20business%20is%20only%20half%20a%20job%20done.%20Today%2C%20with%20the%20internet%20reaching%20across%20homes%20and%20crossing%20all%20international%20borders%20and%20making%20the%20world%20" title="Google Bookmarks"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Fdomainfunk.com%2Fhow-to-web-contact-forms&amp;title=How%20to%20-%20Web%20Contact%20Forms&amp;notes=The%20web%20has%20always%20been%20the%20foremost%20option%20to%20promote%20our%20enterprise%20or%20offers.%20But%20online%20promotion%20of%20our%20business%20is%20only%20half%20a%20job%20done.%20Today%2C%20with%20the%20internet%20reaching%20across%20homes%20and%20crossing%20all%20international%20borders%20and%20making%20the%20world%20" title="del.icio.us"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="" title="TwitThis"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/" title="TwitThis" alt="TwitThis" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fdomainfunk.com%2Fhow-to-web-contact-forms&amp;t=How%20to%20-%20Web%20Contact%20Forms" title="Facebook"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="http://technorati.com/faves?add=http%3A%2F%2Fdomainfunk.com%2Fhow-to-web-contact-forms" title="Technorati"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fdomainfunk.com%2Fhow-to-web-contact-forms&amp;title=How%20to%20-%20Web%20Contact%20Forms" title="StumbleUpon"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="mailto:?subject=How%20to%20-%20Web%20Contact%20Forms&amp;body=http%3A%2F%2Fdomainfunk.com%2Fhow-to-web-contact-forms" title="E-mail this story to a friend!"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/email_link.png" title="E-mail this story to a friend!" alt="E-mail this story to a friend!" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fdomainfunk.com%2Fhow-to-web-contact-forms&amp;title=How%20to%20-%20Web%20Contact%20Forms&amp;source=DomainFunk.com+A+Magazine+for+webconnoissuers&amp;summary=The%20web%20has%20always%20been%20the%20foremost%20option%20to%20promote%20our%20enterprise%20or%20offers.%20But%20online%20promotion%20of%20our%20business%20is%20only%20half%20a%20job%20done.%20Today%2C%20with%20the%20internet%20reaching%20across%20homes%20and%20crossing%20all%20international%20borders%20and%20making%20the%20world%20" title="LinkedIn"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="https://favorites.live.com/quickadd.aspx?marklet=1&amp;url=http%3A%2F%2Fdomainfunk.com%2Fhow-to-web-contact-forms&amp;title=How%20to%20-%20Web%20Contact%20Forms" title="Live"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/live.png" title="Live" alt="Live" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="" title="Ma.gnolia"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/" title="Ma.gnolia" alt="Ma.gnolia" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="http://www.myspace.com/Modules/PostTo/Pages/?u=http%3A%2F%2Fdomainfunk.com%2Fhow-to-web-contact-forms&amp;t=How%20to%20-%20Web%20Contact%20Forms" title="MySpace"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/myspace.png" title="MySpace" alt="MySpace" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="http://buzz.yahoo.com/submit/?submitUrl=http%3A%2F%2Fdomainfunk.com%2Fhow-to-web-contact-forms&amp;submitHeadline=How%20to%20-%20Web%20Contact%20Forms&amp;submitSummary=The%20web%20has%20always%20been%20the%20foremost%20option%20to%20promote%20our%20enterprise%20or%20offers.%20But%20online%20promotion%20of%20our%20business%20is%20only%20half%20a%20job%20done.%20Today%2C%20with%20the%20internet%20reaching%20across%20homes%20and%20crossing%20all%20international%20borders%20and%20making%20the%20world%20&amp;submitCategory=science&amp;submitAssetType=text" title="Yahoo! Buzz"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/yahoobuzz.png" title="Yahoo! Buzz" alt="Yahoo! Buzz" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="http://yigg.de/neu?exturl=http%3A%2F%2Fdomainfunk.com%2Fhow-to-web-contact-forms&amp;exttitle=How%20to%20-%20Web%20Contact%20Forms" title="Yigg"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/yiggit.png" title="Yigg" alt="Yigg" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="http://sphinn.com/submit.php?url=http%3A%2F%2Fdomainfunk.com%2Fhow-to-web-contact-forms&amp;title=How%20to%20-%20Web%20Contact%20Forms" title="Sphinn"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/sphinn.png" title="Sphinn" alt="Sphinn" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="http://www.mixx.com/submit?page_url=http%3A%2F%2Fdomainfunk.com%2Fhow-to-web-contact-forms&amp;title=How%20to%20-%20Web%20Contact%20Forms" title="Mixx"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/mixx.png" title="Mixx" alt="Mixx" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="http://blogmarks.net/my/new.php?mini=1&amp;simple=1&amp;url=http%3A%2F%2Fdomainfunk.com%2Fhow-to-web-contact-forms&amp;title=How%20to%20-%20Web%20Contact%20Forms" title="blogmarks"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/blogmarks.png" title="blogmarks" alt="blogmarks" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="http://cimlap.blogter.hu/index.php?action=suggest_link&amp;title=How%20to%20-%20Web%20Contact%20Forms&amp;url=http%3A%2F%2Fdomainfunk.com%2Fhow-to-web-contact-forms" title="blogtercimlap"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/blogter.png" title="blogtercimlap" alt="blogtercimlap" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="" title="Book.mark.hu"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/" title="Book.mark.hu" alt="Book.mark.hu" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="http://co.mments.com/track?url=http%3A%2F%2Fdomainfunk.com%2Fhow-to-web-contact-forms&amp;title=How%20to%20-%20Web%20Contact%20Forms" title="co.mments"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/co.mments.png" title="co.mments" alt="co.mments" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="" title="De.lirio.us"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/" title="De.lirio.us" alt="De.lirio.us" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="http://www.dotnetkicks.com/kick/?url=http%3A%2F%2Fdomainfunk.com%2Fhow-to-web-contact-forms&amp;title=How%20to%20-%20Web%20Contact%20Forms" title="DotNetKicks"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/dotnetkicks.png" title="DotNetKicks" alt="DotNetKicks" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="http://www.linkagogo.com/go/AddNoPopup?url=http%3A%2F%2Fdomainfunk.com%2Fhow-to-web-contact-forms&amp;title=How%20to%20-%20Web%20Contact%20Forms" title="LinkaGoGo"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/linkagogo.png" title="LinkaGoGo" alt="LinkaGoGo" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="http://www.newsvine.com/_tools/seed&amp;save?u=http%3A%2F%2Fdomainfunk.com%2Fhow-to-web-contact-forms&amp;h=How%20to%20-%20Web%20Contact%20Forms" title="NewsVine"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/newsvine.png" title="NewsVine" alt="NewsVine" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="http://reddit.com/submit?url=http%3A%2F%2Fdomainfunk.com%2Fhow-to-web-contact-forms&amp;title=How%20to%20-%20Web%20Contact%20Forms" title="Reddit"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/reddit.png" title="Reddit" alt="Reddit" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="" title="scuttle"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/" title="scuttle" alt="scuttle" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="" title="Spurl"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/" title="Spurl" alt="Spurl" class="sociable-hovers" /></a></li>
	<li class="sociablelast"><a rel="nofollow" target="_blank" href="" title="YahooMyWeb"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/" title="YahooMyWeb" alt="YahooMyWeb" class="sociable-hovers" /></a></li>
</ul>
</div>
]]></content:encoded>
			<wfw:commentRss>http://domainfunk.com/how-to-web-contact-forms/feed</wfw:commentRss>
		</item>
	</channel>
</rss>
