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

<channel>
	<title>Evolving technologies</title>
	<atom:link href="http://sutharshan.izonedevelopers.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://sutharshan.izonedevelopers.com</link>
	<description>Share about technologies and new ideas</description>
	<lastBuildDate>Sun, 05 Dec 2010 22:36:48 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>HTML Buttons and JavaScript</title>
		<link>http://sutharshan.izonedevelopers.com/2010/10/19/236/</link>
		<comments>http://sutharshan.izonedevelopers.com/2010/10/19/236/#comments</comments>
		<pubDate>Tue, 19 Oct 2010 05:55:17 +0000</pubDate>
		<dc:creator>sutharshan</dc:creator>
				<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[web development]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[JQuery]]></category>

		<guid isPermaLink="false">http://sutharshan.izonedevelopers.com/?p=236</guid>
		<description><![CDATA[ Multiple html buttons within single HTML label

When placing multiple html buttons within single html label, the following issue was found. Especially when using with the JavaScript functions for both buttons. The following code demonstrates the problem clearly. This example uses JQuery library
HTML code
&#60; !DOCTYPE html PUBLIC &#34;-//W3C//DTD XHTML 1.0 Strict//EN&#34; &#34;DTD/xhtml1-strict.dtd&#34;&#62;
&#60;html xmlns=&#34;http://www.w3.org/1999/xhtml&#34; lang=&#34;en&#34; xml:lang=&#34;en&#34;&#62;
&#60;head&#62;
 &#60;meta http-equiv=&#34;Content-type&#34; content=&#34;text/html; charset=utf-8&#34; /&#62;
 &#60;title&#62;Div Drag/Resize Demo&#60;/title&#62;
  &#60;script src=&#34;js/jquery.min.js&#34;&#62;&#60;/script&#62;
&#60;script type=&#34;text/javascript&#34;&#62;
&#160;
$().ready(init);
function init(){
$('#txtinsert').click(function(){alert(&#34;button1&#34;)});
$('#display').click(function (){alert(&#34;button2&#34;)});
$('#display1').click(function (){alert(&#34;button3&#34;)});
}
&#60;/script&#62;
&#60;/head&#62;
&#60;body&#62;
&#60;label&#62;
&#60;input name=&#34;txtinsert&#34; type=&#34;button&#34; id=&#34;txtinsert&#34; value=&#34;Insert Test&#34;  /&#62;
&#60;input name=&#34;display&#34; type=&#34;button&#34; id=&#34;display&#34; value=&#34;display&#34; /&#62;
&#60;input name=&#34;display1&#34; type=&#34;button&#34; id=&#34;display1&#34; value=&#34;display1&#34; /&#62;
  &#60;/label&#62;
&#60;/body&#62;
&#60;/html&#62;
&#160;
In the ...]]></description>
			<content:encoded><![CDATA[<p><strong> Multiple html buttons within single HTML label<br />
</strong><br />
When placing multiple html buttons within single html label, the following issue was found. Especially when using with the JavaScript functions for both buttons. The following code demonstrates the problem clearly. This example uses JQuery library</p>
<p><strong><span style="text-decoration: underline;">HTML code</span></strong></p>
<pre class="html4strict"><span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;</span> !DOCTYPE html PUBLIC <span style="color: #ff0000;">&quot;-//W3C//DTD XHTML 1.0 Strict//EN&quot;</span> <span style="color: #ff0000;">&quot;DTD/xhtml1-strict.dtd&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
<span style="color: #009900;"><a href="http://december.com/html/4/element/html.html"><span style="color: #000000; font-weight: bold;">&lt;html</span></a> xmlns=<span style="color: #ff0000;">&quot;http://www.w3.org/1999/xhtml&quot;</span> <span style="color: #000066;">lang</span>=<span style="color: #ff0000;">&quot;en&quot;</span> xml:<span style="color: #000066;">lang</span>=<span style="color: #ff0000;">&quot;en&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
<span style="color: #009900;"><a href="http://december.com/html/4/element/head.html"><span style="color: #000000; font-weight: bold;">&lt;head&gt;</span></a></span>
 <span style="color: #009900;"><a href="http://december.com/html/4/element/meta.html"><span style="color: #000000; font-weight: bold;">&lt;meta</span></a> <span style="color: #000066;">http-equiv</span>=<span style="color: #ff0000;">&quot;Content-type&quot;</span> <span style="color: #000066;">content</span>=<span style="color: #ff0000;">&quot;text/html; charset=utf-8&quot;</span> /<span style="color: #000000; font-weight: bold;">&gt;</span></span>
 <span style="color: #009900;"><a href="http://december.com/html/4/element/title.html"><span style="color: #000000; font-weight: bold;">&lt;title&gt;</span></a></span>Div Drag/Resize Demo<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/title&gt;</span></span>
  <span style="color: #009900;"><a href="http://december.com/html/4/element/script.html"><span style="color: #000000; font-weight: bold;">&lt;script</span></a> <span style="color: #000066;">src</span>=<span style="color: #ff0000;">&quot;js/jquery.min.js&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span><span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/script&gt;</span></span>
<span style="color: #009900;"><a href="http://december.com/html/4/element/script.html"><span style="color: #000000; font-weight: bold;">&lt;script</span></a> <span style="color: #000066;">type</span>=<span style="color: #ff0000;">&quot;text/javascript&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
&nbsp;
$().ready(init);
function init(){
$('#txtinsert').click(function(){alert(&quot;button1&quot;)});
$('#display').click(function (){alert(&quot;button2&quot;)});
$('#display1').click(function (){alert(&quot;button3&quot;)});
}
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/script&gt;</span></span>
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/head&gt;</span></span>
<span style="color: #009900;"><a href="http://december.com/html/4/element/body.html"><span style="color: #000000; font-weight: bold;">&lt;body&gt;</span></a></span>
<span style="color: #009900;"><a href="http://december.com/html/4/element/label.html"><span style="color: #000000; font-weight: bold;">&lt;label&gt;</span></a></span>
<span style="color: #009900;"><a href="http://december.com/html/4/element/input.html"><span style="color: #000000; font-weight: bold;">&lt;input</span></a> <span style="color: #000066;">name</span>=<span style="color: #ff0000;">&quot;txtinsert&quot;</span> <span style="color: #000066;">type</span>=<span style="color: #ff0000;">&quot;button&quot;</span> <span style="color: #000066;">id</span>=<span style="color: #ff0000;">&quot;txtinsert&quot;</span> <span style="color: #000066;">value</span>=<span style="color: #ff0000;">&quot;Insert Test&quot;</span>  /<span style="color: #000000; font-weight: bold;">&gt;</span></span>
<span style="color: #009900;"><a href="http://december.com/html/4/element/input.html"><span style="color: #000000; font-weight: bold;">&lt;input</span></a> <span style="color: #000066;">name</span>=<span style="color: #ff0000;">&quot;display&quot;</span> <span style="color: #000066;">type</span>=<span style="color: #ff0000;">&quot;button&quot;</span> <span style="color: #000066;">id</span>=<span style="color: #ff0000;">&quot;display&quot;</span> <span style="color: #000066;">value</span>=<span style="color: #ff0000;">&quot;display&quot;</span> /<span style="color: #000000; font-weight: bold;">&gt;</span></span>
<span style="color: #009900;"><a href="http://december.com/html/4/element/input.html"><span style="color: #000000; font-weight: bold;">&lt;input</span></a> <span style="color: #000066;">name</span>=<span style="color: #ff0000;">&quot;display1&quot;</span> <span style="color: #000066;">type</span>=<span style="color: #ff0000;">&quot;button&quot;</span> <span style="color: #000066;">id</span>=<span style="color: #ff0000;">&quot;display1&quot;</span> <span style="color: #000066;">value</span>=<span style="color: #ff0000;">&quot;display1&quot;</span> /<span style="color: #000000; font-weight: bold;">&gt;</span></span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/label&gt;</span></span>
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/body&gt;</span></span>
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/html&gt;</span></span>
&nbsp;</pre>
<p>In the above program the expected results are follows.</p>
<ol>
<li>When the user clicks the button1 the message box displays with the message button1</li>
<li>
When the user clicks the button2 the message box displays with the message button2</li>
<li>When the user clicks the button3 the message box displays with the message button3</li>
</ol>
<p>But the real results that will be obtain from the above program are follows</p>
<ol>
<li>When the user clicks the button1 the message box displays with the message button1</li>
<li>
When the user clicks the button2 the message box displays with the message button2 and followed by another message box with the message button1</li>
<li>When the user clicks the button3 the message box displays with the message button3 and followed by another message box with the message button1</li>
</ol>
<p>This problem occurs because all the buttons were placed within a single label tag and because of that if the buttons except the first is pressed, it triggers the event of the clicked button and also triggers the click event for the first button.</p>
<p>If you come across this kind of issue, remove the label tags and once its removed these behaviors will not be observed.</p>
<p class="facebook"><a href="http://www.facebook.com/share.php?u=http://sutharshan.izonedevelopers.com/2010/10/19/236/" target="_blank"><img src="http://sutharshan.izonedevelopers.com/wp-content/plugins/add-to-facebook-plugin/facebook_share_icon.gif" alt="Share on Facebook" title="Share on Facebook" /></a></p>]]></content:encoded>
			<wfw:commentRss>http://sutharshan.izonedevelopers.com/2010/10/19/236/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Wondershare time freeze</title>
		<link>http://sutharshan.izonedevelopers.com/2010/08/25/wondershare-time-freeze/</link>
		<comments>http://sutharshan.izonedevelopers.com/2010/08/25/wondershare-time-freeze/#comments</comments>
		<pubDate>Wed, 25 Aug 2010 09:10:28 +0000</pubDate>
		<dc:creator>sutharshan</dc:creator>
				<category><![CDATA[Common]]></category>
		<category><![CDATA[featured]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[utilities]]></category>

		<guid isPermaLink="false">http://sutharshan.izonedevelopers.com/?p=199</guid>
		<description><![CDATA[Wondershare offers lots of desktop and mobile products to the industry and for home use. When I visited their website  I found about their vision and about the company. Their vision is "The software wisdom shared worldwide." and their mission is to be a global leading consumer software developer and publisher.
They offer varieties of products in the following categories. By following those links you can simply view the products from their website and download the trial version to test those applications.


Video &#38; DVD Tools
Digital Photo Tools
iPhone, iPod &#38; iPad Tools
Audio Tools
PDF Tools
Training ...]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;"><a rel="attachment wp-att-200" href="http://sutharshan.izonedevelopers.com/2010/08/25/wondershare-time-freeze/giveaway_box/"><img class="alignleft size-full wp-image-200" title="giveaway_box" src="http://sutharshan.izonedevelopers.com/wp-content/uploads/2010/08/giveaway_box.jpg" alt="" width="131" height="175" /></a>Wondershare offers lots of desktop and mobile products to the industry and for home use. When I visited their website  I found about their vision and about the company. Their vision is "The software wisdom shared worldwide." and their mission is to be a global leading consumer software developer and publisher.</p>
<p style="text-align: justify;">They offer varieties of products in the following categories. By following those links you can simply view the products from their website and download the trial version to test those applications.</p>
<p style="text-align: justify;">
<ul>
<li><a href="http://www.wondershare.com/video-dvd-software-win.html">Video &amp; DVD Tools</a></li>
<li><a href="http://www.wondershare.com/photo-edit-software-win.html">Digital Photo Tools</a></li>
<li><a href="http://www.wondershare.com/iphone-ipod-ipad-tools-win.html">iPhone, iPod &amp; iPad Tools</a></li>
<li><a href="http://www.wondershare.com/audio-converter-win.html">Audio Tools</a></li>
<li><a href="http://www.wondershare.com/pdf-tools-win.html">PDF Tools</a></li>
<li><a href="http://www.wondershare.com/training-tools.html">Training Tools</a></li>
<li><a href="http://www.wondershare.com/pc-utility-win.html">PC Utilities</a></li>
<li><a href="http://www.wondershare.com/mobile/index.html">Mobile Apps</a></li>
</ul>
<p style="text-align: justify;">One of the product that make me interested in wondershare is time freeze. Well actually its a PC Utility software that they provide to protect the PC from malware and virus attacks and to prevent the lose of data. I have downloaded that product and tested with my computer and found its very handy and I didn't experience any processing delays in using this product. Even though there was a slight delay during the start up and afterwards it works fine for me. Of course I'm using Core 2 Duo 2GHz processor with 4gb ram.</p>
<p style="text-align: justify;">Wondershare Time Freeze is a virtual system software, and easier to use. In their website they have given as it utilizing advanced virtualization technology and  it can provide higher-level security to computer, enhance MBR protection, and greatly improve the efficiency of virtual system. As a End user I while using this software I have installed several games and some other small freeware and shareware softwares to test on the system. Those worked fine and once the system rebooted, there were no signs of installations of those software. Well its actually a virtual system and those softwares were installed in the virtual system itself. Therefore once its rebooted there were no applications.</p>
<p style="text-align: justify;">It also provides folder protection which can be used to protect specific folders as i guess. I haven't tried those features yet much. but I hope that's how it actually works and these are the key features of the wondershare time freeze software which they have mentioned in their website.</p>
<ul>
<h3>Create a better system condition</h3>
<li>Combination of virtual system program and antivirus software works perfectly to guarantee your system safety;</li>
<li>Eliminate costs of frequent disk defragmentation.</li>
</ul>
<ul>
<h3>Make your system safe from viruses</h3>
<li>Test suspicious software and game installations safely on the virtual system;</li>
<li>Watch online movies and surf internet freely without fear of virus attack.</li>
</ul>
<ul>
<h3>Enhance your system protection</h3>
<li>Offer more flexibility to roll system back to the state before protection, or save virtual system data to the real system;</li>
<li>Support protecting MBR and ensure computer to boot up normally.</li>
</ul>
<p style="text-align: justify;">As you can see it provides lots of benefits where as I have tested few of them with the trial version of this software. I have reinstalled my operating system and other softwares several times mainly due to testing the new softwares and games. Its a headache and when it comes to company environment its important to keep the computer safe from the threat attacks. Therefore my opinion is to have a software like this to protect the real system from the attacks and its actually serves its purpose well.</p>
<p style="text-align: justify;">My one and only worry is that, there were several softwares which needs the reboot to work properly. when I test those softwares with this time freeze, they wont work at all. Because i need to restart the system in order to make those softwares work. But when I reboot, everything those stored in the virtual system has been gone. Except this everything else was perfectly fine with this software. I like to test the Time shuttle, but the main issue is that to test such application I have to use that for several months.</p>
<p style="text-align: justify;">Here is the link to download the product:  <span style="font-family: Verdana; color: #000080; font-size: x-small;"><span style="color: #000000;"> <a href="http://www.disk-utilities.com/time-freeze/">http://www.disk-utilities.com/time-freeze/</a> </span></span></p>
<p style="text-align: justify;">I recommend all to have a look at that application and see how it works to you and give me your feedbacks.</p>
<p class="facebook"><a href="http://www.facebook.com/share.php?u=http://sutharshan.izonedevelopers.com/2010/08/25/wondershare-time-freeze/" target="_blank"><img src="http://sutharshan.izonedevelopers.com/wp-content/plugins/add-to-facebook-plugin/facebook_share_icon.gif" alt="Share on Facebook" title="Share on Facebook" /></a></p>]]></content:encoded>
			<wfw:commentRss>http://sutharshan.izonedevelopers.com/2010/08/25/wondershare-time-freeze/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ipower hosting</title>
		<link>http://sutharshan.izonedevelopers.com/2010/08/22/ipower-hosting/</link>
		<comments>http://sutharshan.izonedevelopers.com/2010/08/22/ipower-hosting/#comments</comments>
		<pubDate>Sun, 22 Aug 2010 07:16:17 +0000</pubDate>
		<dc:creator>sutharshan</dc:creator>
				<category><![CDATA[web design]]></category>
		<category><![CDATA[web development]]></category>
		<category><![CDATA[web hosting]]></category>
		<category><![CDATA[hosting]]></category>

		<guid isPermaLink="false">http://sutharshan.izonedevelopers.com/?p=184</guid>
		<description><![CDATA[IPower provides shared hosting and vps hosting services to the customers. They also provide windows hosting and there are several packages available in shared hosting as well. As far as I have used ipower hosting, I didn't have any uptime  or bandwidth issues with them. Currently we are running several hosting with ipower and we refer our customers to host with ipower hosting as well.  From our customers we found that there were a slight delay in customer services from the ipower. But still we didn't experience that issue.  I would like to provide a closer look of the ...]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;"><a rel="attachment wp-att-189" href="http://sutharshan.izonedevelopers.com/2010/08/22/ipower-hosting/ipower/"><img class="alignleft size-full wp-image-189" title="ipower" src="http://sutharshan.izonedevelopers.com/wp-content/uploads/2010/08/ipower.jpg" alt="" width="150" height="130" /></a><a href="http://www.ipower.com/join/index.bml?AffID=569788&amp;amp;LinkName=ipower_izone">IPower</a> provides shared hosting and vps hosting services to the customers. They also provide windows hosting and there are several packages available in shared hosting as well. As far as I have used ipower hosting, I didn't have any uptime  or bandwidth issues with them. Currently we are running several hosting with ipower and we refer our customers to host with ipower hosting as well.  From our customers we found that there were a slight delay in customer services from the ipower. But still we didn't experience that issue.  I would like to provide a closer look of the ipower hosting features which is almost similar to other hosting companies as well.  The major different is that they provide vDeck control panel to the users which is more attractive, easy to use and also have faster response time. We look forward to know about the hosting experience from our customers and other readers as well. Please feel free to provide your feed back below.</p>
<p style="text-align: justify;"><a href="http://www.ipower.com/join/index.bml?AffID=569788&amp;amp;LinkName=ipower_izone">Click here </a>or click on the banner to view the full features now.</p>
<p><a href="http://www.ipower.com/join/index.bml?AffID=569788&amp;LinkName=izone_banner"><img style="border: 0px;" src="http://www.ipower.com/affiliate/banners/239" alt="affiliate_link" /></a></p>
<p>The features that ipower offer is given below.</p>
<p style="text-align: justify;">
<div>
<table>
<tbody>
<tr>
<th colspan="2"><span style="color: #ff9900;"><a href="http://www.ipower.com/join/index.bml?AffID=569788&amp;amp;LinkName=ipower_izone">BASIC FEATURES</a></span></th>
</tr>
<tr>
<td>Disk Space</td>
<td>Unlimited</td>
</tr>
<tr>
<td>Transfer / Bandwidth</td>
<td>Unlimited</td>
</tr>
<tr>
<td>Personalized Domain Name (YourName.com)</td>
<td>One Free</td>
</tr>
<tr>
<td>International Domain Name Support</td>
<td><img src="http://www.ipower.com/images/icons/icon-checkmark.gif" alt="Included" /></td>
</tr>
<tr>
<td>Domains Allowed</td>
<td>Unlimited</td>
</tr>
</tbody>
</table>
</div>
<div></div>
<div>
<table>
<tbody>
<tr>
<th colspan="2"><span style="color: #ff9900;"><a href="http://www.ipower.com/join/index.bml?AffID=569788&amp;amp;LinkName=ipower_izone">EMAIL FEATURES</a></span></th>
</tr>
<tr>
<td>POP3 E-mail Accounts: Supports Outlook, etc.</td>
<td>2,500</td>
</tr>
<tr>
<td>Forwarding Accounts &amp; Auto Responders</td>
<td><img src="http://www.ipower.com/images/icons/icon-checkmark.gif" alt="" /></td>
</tr>
<tr>
<td>Spam-filtering</td>
<td><img src="http://www.ipower.com/images/icons/icon-checkmark.gif" alt="" /></td>
</tr>
<tr>
<td>Browser-based E-mail (WebMail)</td>
<td><img src="http://www.ipower.com/images/icons/icon-checkmark.gif" alt="" /></td>
</tr>
</tbody>
</table>
</div>
<div></div>
<div>
<table>
<tbody>
<tr>
<th colspan="2"><span style="color: #ff9900;"><a href="http://www.ipower.com/join/index.bml?AffID=569788&amp;amp;LinkName=ipower_izone">WEBSITE BUILDER</a></span></th>
</tr>
<tr>
<td>Drag and Drop Site Builder</td>
<td><img src="http://www.ipower.com/images/icons/icon-checkmark.gif" alt="Included" /></td>
</tr>
<tr>
<td>Template Based Site Builder</td>
<td><img src="http://www.ipower.com/images/icons/icon-checkmark.gif" alt="Included" /></td>
</tr>
<tr>
<td>Blogging Tools</td>
<td><img src="http://www.ipower.com/images/icons/icon-checkmark.gif" alt="Included" /></td>
</tr>
<tr>
<td>Photo Gallery Tools</td>
<td><img src="http://www.ipower.com/images/icons/icon-checkmark.gif" alt="Included" /></td>
</tr>
</tbody>
</table>
</div>
<div>
<table>
<tbody>
<tr>
<th colspan="2"><span style="color: #ff9900;"><a href="http://www.ipower.com/join/index.bml?AffID=569788&amp;amp;LinkName=ipower_izone">WEB STATISTICS</a></span></th>
</tr>
<tr>
<td>Graphical Web Statistic Program</td>
<td><img src="http://www.ipower.com/images/icons/icon-checkmark.gif" alt="" /></td>
</tr>
<tr>
<td>Access Logs</td>
<td><img src="http://www.ipower.com/images/icons/icon-checkmark.gif" alt="" /></td>
</tr>
<tr>
<td>CGI Error Logs</td>
<td><img src="http://www.ipower.com/images/icons/icon-checkmark.gif" alt="" /></td>
</tr>
<tr>
<td>Bandwidth Usage</td>
<td><img src="http://www.ipower.com/images/icons/icon-checkmark.gif" alt="" /></td>
</tr>
</tbody>
</table>
</div>
<div>
<table>
<tbody>
<tr>
<th colspan="2"><span style="color: #ff9900;"><a href="http://www.ipower.com/join/index.bml?AffID=569788&amp;amp;LinkName=ipower_izone">COMMERCE FEATURES</a></span></th>
</tr>
<tr>
<td>ShopSite Starter (15 products)</td>
<td><img src="http://www.ipower.com/images/icons/icon-checkmark.gif" alt="" /></td>
</tr>
<tr>
<td>AgoraCart</td>
<td><img src="http://www.ipower.com/images/icons/icon-checkmark.gif" alt="" /></td>
</tr>
<tr>
<td>PayPal Shopping Cart Integration</td>
<td><img src="http://www.ipower.com/images/icons/icon-checkmark.gif" alt="" /></td>
</tr>
<tr>
<td>osCommerce</td>
<td><img src="http://www.ipower.com/images/icons/icon-checkmark.gif" alt="" /></td>
</tr>
</tbody>
</table>
</div>
<div>
<table>
<tbody>
<tr>
<th colspan="2"><span style="color: #ff9900;"><a href="http://www.ipower.com/join/index.bml?AffID=569788&amp;amp;LinkName=ipower_izone">HOSTING UTILITIES</a></span></th>
</tr>
<tr>
<td>FTP Subusers</td>
<td><img src="http://www.ipower.com/images/icons/icon-checkmark.gif" alt="" /></td>
</tr>
<tr>
<td>FTP Management</td>
<td><img src="http://www.ipower.com/images/icons/icon-checkmark.gif" alt="" /></td>
</tr>
<tr>
<td>File Manager</td>
<td><img src="http://www.ipower.com/images/icons/icon-checkmark.gif" alt="" /></td>
</tr>
<tr>
<td>Secure FTP</td>
<td><img src="http://www.ipower.com/images/icons/icon-checkmark.gif" alt="" /></td>
</tr>
</tbody>
</table>
</div>
<div>
<table>
<tbody>
<tr>
<th colspan="2"><span style="color: #ff9900;"><a href="http://www.ipower.com/join/index.bml?AffID=569788&amp;amp;LinkName=ipower_izone">SOFTWARE AND SCRIPTS</a></span></th>
</tr>
<tr>
<td>CGI-BIN + PHP 4 &amp; 5 Support</td>
<td><img src="http://www.ipower.com/images/icons/icon-checkmark.gif" alt="" /></td>
</tr>
<tr>
<td>Perl Support</td>
<td><img src="http://www.ipower.com/images/icons/icon-checkmark.gif" alt="" /></td>
</tr>
<tr>
<td>MySQL Databases</td>
<td>25</td>
</tr>
<tr>
<td>Server Side Includes</td>
<td><img src="http://www.ipower.com/images/icons/icon-checkmark.gif" alt="" /></td>
</tr>
<tr>
<td>Web Hosting Control Panel (vDeck 3.0)</td>
<td><img src="http://www.ipower.com/images/icons/icon-checkmark.gif" alt="" /></td>
</tr>
</tbody>
</table>
</div>
<div>
<table>
<tbody>
<tr>
<th colspan="2"><span style="color: #ff9900;"><a href="http://www.ipower.com/join/index.bml?AffID=569788&amp;amp;LinkName=ipower_izone">MARKETING &amp; PROMOTIONS</a></span></th>
</tr>
<tr>
<td>$50 Google AdWords™ Credit</td>
<td><img src="http://www.ipower.com/images/icons/icon-checkmark.gif" alt="" /></td>
</tr>
<tr>
<td>$25 Yahoo! Search Marketing Credit</td>
<td><img src="http://www.ipower.com/images/icons/icon-checkmark.gif" alt="" /></td>
</tr>
<tr>
<td><img src="http://www.ipower.com/images/icons/icon-new-badge.png" alt="New!" /> $50 Facebook Advertising Credit</td>
<td><img src="http://www.ipower.com/images/icons/icon-checkmark.gif" alt="" /></td>
</tr>
<tr>
<td><img src="http://www.ipower.com/images/icons/icon-new-badge.png" alt="New!" /> Free YELLOWPAGES.COM Listing</td>
<td><img src="http://www.ipower.com/images/icons/icon-checkmark.gif" alt="" /></td>
</tr>
<tr>
<td>Google Webmaster Tools</td>
<td><img src="http://www.ipower.com/images/icons/icon-checkmark.gif" alt="" /></td>
</tr>
<tr>
<td>Carbonite Online Backup</td>
<td><img src="http://www.ipower.com/images/icons/icon-checkmark.gif" alt="" /></td>
</tr>
<tr>
<td><img src="http://www.ipower.com/images/icons/icon-new-badge.png" alt="New!" /> Google Custom Search Engine</td>
<td><img src="http://www.ipower.com/images/icons/icon-checkmark.gif" alt="" /></td>
</tr>
<tr>
<td>RatePoint 60-Day Free Membership</td>
<td><img src="http://www.ipower.com/images/icons/icon-checkmark.gif" alt="" /></td>
</tr>
</tbody>
</table>
</div>
<div>
<table>
<tbody>
<tr>
<th colspan="2"><span style="color: #ff9900;"><a href="http://www.ipower.com/join/index.bml?AffID=569788&amp;amp;LinkName=ipower_izone">ADVANCED SETTINGS</a></span></th>
</tr>
<tr>
<td>FrontPage 2000 / 2002 Extensions</td>
<td><img src="http://www.ipower.com/images/icons/icon-checkmark.gif" alt="" /></td>
</tr>
<tr>
<td>Error Pages</td>
<td><img src="http://www.ipower.com/images/icons/icon-checkmark.gif" alt="" /></td>
</tr>
<tr>
<td>URL Redirects</td>
<td><img src="http://www.ipower.com/images/icons/icon-checkmark.gif" alt="" /></td>
</tr>
<tr>
<td>Customizable MIME Types</td>
<td><img src="http://www.ipower.com/images/icons/icon-checkmark.gif" alt="" /></td>
</tr>
</tbody>
</table>
</div>
<div>
<table>
<tbody>
<tr>
<th colspan="2"><span style="color: #ff9900;"><a href="http://www.ipower.com/join/index.bml?AffID=569788&amp;amp;LinkName=ipower_izone">POWER PLUGINS</a></span></th>
</tr>
<tr>
<td>Form Mail Script</td>
<td><img src="http://www.ipower.com/images/icons/icon-checkmark.gif" alt="" /></td>
</tr>
<tr>
<td>Guest Book: GBook</td>
<td><img src="http://www.ipower.com/images/icons/icon-checkmark.gif" alt="" /></td>
</tr>
<tr>
<td>Bulletin Board: phpBB</td>
<td><img src="http://www.ipower.com/images/icons/icon-checkmark.gif" alt="" /></td>
</tr>
<tr>
<td>Blogging Software: WordPress</td>
<td><img src="http://www.ipower.com/images/icons/icon-checkmark.gif" alt="" /></td>
</tr>
<tr>
<td>Chat: X7 Chat</td>
<td><img src="http://www.ipower.com/images/icons/icon-checkmark.gif" alt="" /></td>
</tr>
</tbody>
</table>
</div>
<div>
<table>
<tbody>
<tr>
<th colspan="2"><span style="color: #ff9900;"><a href="http://www.ipower.com/join/index.bml?AffID=569788&amp;amp;LinkName=ipower_izone">WORLD-CLASS TECHNOLOGY</a></span></th>
</tr>
<tr>
<td><img src="http://www.ipower.com/images/icons/icon-new-badge.png" alt="" /> 100% Wind Powered</td>
<td><img src="http://www.ipower.com/images/icons/icon-checkmark.gif" alt="" /></td>
</tr>
<tr>
<td>High Performance Servers</td>
<td><img src="http://www.ipower.com/images/icons/icon-checkmark.gif" alt="" /></td>
</tr>
<tr>
<td>Multiple Gigabit &amp; Fiberoptic Connections on Diverse Backbones</td>
<td><img src="http://www.ipower.com/images/icons/icon-checkmark.gif" alt="" /></td>
</tr>
<tr>
<td>NetApp Snapshot Data Backups</td>
<td><img src="http://www.ipower.com/images/icons/icon-checkmark.gif" alt="" /></td>
</tr>
<tr>
<td>2 Data Center Locations</td>
<td><img src="http://www.ipower.com/images/icons/icon-checkmark.gif" alt="" /></td>
</tr>
<tr>
<td>Cisco Routers Using BGP4 Protocol</td>
<td><img src="http://www.ipower.com/images/icons/icon-checkmark.gif" alt="" /></td>
</tr>
<tr>
<td>UPS Power Back-up, Diesel Back-up Generator</td>
<td><img src="http://www.ipower.com/images/icons/icon-checkmark.gif" alt="" /></td>
</tr>
<tr>
<td>24x7 Network Monitoring</td>
<td><img src="http://www.ipower.com/images/icons/icon-checkmark.gif" alt="" /></td>
</tr>
</tbody>
</table>
</div>
<p class="facebook"><a href="http://www.facebook.com/share.php?u=http://sutharshan.izonedevelopers.com/2010/08/22/ipower-hosting/" target="_blank"><img src="http://sutharshan.izonedevelopers.com/wp-content/plugins/add-to-facebook-plugin/facebook_share_icon.gif" alt="Share on Facebook" title="Share on Facebook" /></a></p>]]></content:encoded>
			<wfw:commentRss>http://sutharshan.izonedevelopers.com/2010/08/22/ipower-hosting/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>High paying adsense keywords</title>
		<link>http://sutharshan.izonedevelopers.com/2010/08/22/high-paying-adsense-keywords/</link>
		<comments>http://sutharshan.izonedevelopers.com/2010/08/22/high-paying-adsense-keywords/#comments</comments>
		<pubDate>Sun, 22 Aug 2010 06:09:39 +0000</pubDate>
		<dc:creator>sutharshan</dc:creator>
				<category><![CDATA[adsense]]></category>
		<category><![CDATA[Common]]></category>
		<category><![CDATA[earn money]]></category>
		<category><![CDATA[earn online]]></category>
		<category><![CDATA[google]]></category>

		<guid isPermaLink="false">http://sutharshan.izonedevelopers.com/?p=180</guid>
		<description><![CDATA[I found few articles about the high paying adsense keywords and it seems really interesting that the most of the keywords published in the articles are almost same. So I would like to give some of them in this article which i have seen commonly in other website which are related to adsense. I hope it might be useful for those who are using adsense programs. I found this article from http://com-uk.us website  and the rights of this content goes to them.
Keywords     Estimated Avg. CPC         ...]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;">I found few articles about the high paying adsense keywords and it seems really interesting that the most of the keywords published in the articles are almost same. So I would like to give some of them in this article which i have seen commonly in other website which are related to adsense. I hope it might be useful for those who are using adsense programs. I found this article from http://com-uk.us website  and the rights of this content goes to them.</p>
<p><strong><span style="text-decoration: underline;"><span style="color: #800000;">Keywords     Estimated Avg. CPC                     lower         upper</span></span></strong></p>
<p>mesothelioma survivor                                                $0.00       $51.73<br />
minneapolis personal injury lawyers                     $0.00       $51.60<br />
mesothelioma attorneys san diego                         $37.98     $50.74<br />
asbestos attorney illinois                                            $37.69     $50.44<br />
asbestos lawyers pennsylvania                                $0.00       $50.44<br />
pennsylvania asbestos lawyers                                $0.00       $50.44<br />
delaware mesothelioma attorneys                         $0.00       $50.38<br />
maryland asbestos lawyers                                       $0.00       $50.10<br />
phoenix dui lawyer     $34.30     $50.01<br />
baltimore mesothelioma attorneys     $0.00     $49.85<br />
phoenix dui lawyers     $34.78     $49.81<br />
phoenix dui attorney     $36.75     $49.63<br />
student loan consilidation     $33.77     $49.50<br />
asbestos attorney washington     $32.92     $49.39<br />
criminal defense attorneys los angeles     $35.03     $49.33<br />
los angeles criminal defense attorneys     $35.03     $49.33<br />
lemon law attorneys california     $32.69     $49.03<br />
los angeles defense attorneys     $33.74     $49.02<br />
dui phoenix arizona     $33.71     $49.01<br />
dallas mesothelioma attorneys     $0.00     $48.92<br />
lemon law lawyers los angeles     $0.00     $48.92<br />
mesothelioma attorneys dallas     $0.00     $48.92<br />
mesothelioma law firms     $32.61     $48.92<br />
minneapolis injury lawyers     $0.00     $48.84<br />
asbestos attorney ohio     $32.37     $48.55<br />
colorado mesothelioma attorneys     $0.00     $48.50<br />
dui lawyers southern california     $0.00     $48.50<br />
georgia mesothelioma lawyers     $0.00     $48.50<br />
mesothelioma attorney minneapolis     $0.00     $48.50<br />
student loan conslidation     $0.00     $48.50<br />
fort worth dwi attorney     $32.64     $47.87<br />
oregon motorcycle accident attorney     $0.00     $47.82<br />
arizona attorney dui     $31.83     $47.75<br />
arizona dui attorney     $31.83     $47.75<br />
no win no fee claims     $31.78     $47.67<br />
birth injury lawyers los angeles     $0.00     $47.62<br />
san bernardino dui attorney     $0.00     $47.42<br />
buyer of structured settlement payments     $32.64     $47.31<br />
attorney injury michigan personal     $31.49     $47.24<br />
michigan personal injury attorney     $31.49     $47.24<br />
birth injury lawyers philadelphia     $0.00     $47.18<br />
philadelphia birth injury lawyers     $0.00     $47.18<br />
sell structured insurance settlements     $34.18     $46.96<br />
criminal attorneys los angeles     $32.97     $46.89<br />
car accident lawyers georgia     $31.22     $46.84<br />
georgia car accident lawyers     $31.22     $46.84<br />
cash for annuity payments     $0.00     $46.79<br />
water damage los angeles     $31.55     $46.64<br />
studen loan consolidation     $30.97     $46.46<br />
arizona dui lawyer     $30.96     $46.45<br />
maryland mesothelioma attorneys     $0.00     $46.37<br />
car insurance in austin     $34.02     $46.29<br />
california car charity donate     $30.84     $46.26<br />
houston mesothelioma lawyers     $30.83     $46.24<br />
mesothelioma lawyers houston     $30.83     $46.24<br />
illinois mesothelioma lawyers     $30.77     $46.15<br />
arizona dui attorneys     $30.76     $46.13<br />
dallas dwi attorneys     $31.74     $46.09<br />
mesothelioma peritoneal treatment     $30.69     $46.03<br />
accident attorney car sacramento     $31.80     $45.87<br />
birth injury lawyers bronx     $30.57     $45.85<br />
student loan consolidation interest rates     $31.33     $45.76<br />
student loan consolidation rates     $30.46     $45.68<br />
charlotte auto insurance     $34.08     $45.55<br />
new york elevator accident lawyer     $36.27     $45.33<br />
consolidating private student loans     $30.17     $45.25<br />
delaware mesothelioma lawyers     $0.00     $45.21<br />
louisiana mesothelioma lawyers     $0.00     $45.20<br />
new york construction accident lawyer     $30.13     $45.20<br />
asbestos attorneys philadelphia     $0.00     $45.19<br />
philadelphia asbestos attorneys     $0.00     $45.19</p>
<p class="facebook"><a href="http://www.facebook.com/share.php?u=http://sutharshan.izonedevelopers.com/2010/08/22/high-paying-adsense-keywords/" target="_blank"><img src="http://sutharshan.izonedevelopers.com/wp-content/plugins/add-to-facebook-plugin/facebook_share_icon.gif" alt="Share on Facebook" title="Share on Facebook" /></a></p>]]></content:encoded>
			<wfw:commentRss>http://sutharshan.izonedevelopers.com/2010/08/22/high-paying-adsense-keywords/feed/</wfw:commentRss>
		<slash:comments>14</slash:comments>
		</item>
		<item>
		<title>Send email free from facebook!</title>
		<link>http://sutharshan.izonedevelopers.com/2010/08/04/send-email-free-from-facebook/</link>
		<comments>http://sutharshan.izonedevelopers.com/2010/08/04/send-email-free-from-facebook/#comments</comments>
		<pubDate>Wed, 04 Aug 2010 18:05:42 +0000</pubDate>
		<dc:creator>sutharshan</dc:creator>
				<category><![CDATA[Common]]></category>
		<category><![CDATA[email]]></category>
		<category><![CDATA[facebook]]></category>
		<category><![CDATA[web development]]></category>
		<category><![CDATA[Ajax]]></category>
		<category><![CDATA[browser scripts]]></category>
		<category><![CDATA[bulk email]]></category>
		<category><![CDATA[easy mail]]></category>
		<category><![CDATA[facebook mail]]></category>
		<category><![CDATA[free mail]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[link]]></category>
		<category><![CDATA[mail list]]></category>
		<category><![CDATA[spam]]></category>

		<guid isPermaLink="false">http://sutharshan.izonedevelopers.com/?p=154</guid>
		<description><![CDATA[iZoneDevelopers have introduced new facebook application to send free emails directly from facebook. The major benefit of this application is that, there is no need to login into your email accounts. Also this application provides WYSIWYG editor (word processing editor) while enable you to type and format your emails just in clicks. we are happy to inform that based on the success of this application we'll add new features and also will provide free email addresses to all the users of facebook application.
Please follow the following link to use the ...]]></description>
			<content:encoded><![CDATA[<p><strong>iZoneDevelopers</strong> have introduced new facebook application to send free emails directly from facebook. The major benefit of this application is that, there is no need to login into your email accounts. Also this application provides WYSIWYG editor (word processing editor) while enable you to type and format your emails just in clicks. we are happy to inform that based on the success of this application we'll add new features and also will provide free email addresses to all the users of facebook application.</p>
<p>Please follow the following link to use the application for free! its only available for facebook account holders.</p>
<p><a href="http://apps.facebook.com/freemail/" target="_blank">http://apps.facebook.com/freemail/</a></p>
<p>Join in our group to get updates and new features details - <a href="http://www.facebook.com/apps/application.php?id=138757789485176" target="_blank">http://www.facebook.com/apps/application.php?id=138757789485176</a></p>
<p><strong>Why its more useful?</strong></p>
<ul>
<li>No need to login to the email account</li>
<li>Word processing editor to add styles and images to the email.</li>
<li>Free and easy</li>
<li>Send unlimited emails from facebook.</li>
<li>Your profile link and sender detail will be added automatically.</li>
<li>Can use to promote your facebook profile</li>
<li>This is the best application for the groups to promote them selves</li>
</ul>
<p>We are providing unlimited email sending facilities for the users of this application. All the free email providers have some limitations on sending emails every day. we do not have any limitations and those who wish to do email marketing and newsletter management with the application, please contact us directly at<a href="mailto:admin@izonedevelopers.com" target="_blank">admin@izonedevelopers.com</a>.</p>
<p>Please contact <strong><a href="mailto:admin@izonedevelopers.com" target="_blank">admin@izonedevelopers.com</a></strong> for more details.</p>
<p>Please forward this message to all your friends and let them know about this application. We need all your support to develop a powerfull community based application to provide free services.</p>
<p><a href="http://www.ipower.com/join/index.bml?AffID=569788&amp;LinkName=izone_banner" target="_blank"><img src="http://www.ipower.com/affiliate/banners/239" alt="affiliate_link" /></a></p>
<p><a href="http://www.twitter.com/izonedevelopers" target="_blank"><img src="http://twitter-badges.s3.amazonaws.com/follow_bird-b.png" alt="Follow izonedevelopers on Twitter" /></a></p>
<p class="facebook"><a href="http://www.facebook.com/share.php?u=http://sutharshan.izonedevelopers.com/2010/08/04/send-email-free-from-facebook/" target="_blank"><img src="http://sutharshan.izonedevelopers.com/wp-content/plugins/add-to-facebook-plugin/facebook_share_icon.gif" alt="Share on Facebook" title="Share on Facebook" /></a></p>]]></content:encoded>
			<wfw:commentRss>http://sutharshan.izonedevelopers.com/2010/08/04/send-email-free-from-facebook/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Confirmation using JavaScript</title>
		<link>http://sutharshan.izonedevelopers.com/2010/07/30/confirmation-using-javascript/</link>
		<comments>http://sutharshan.izonedevelopers.com/2010/07/30/confirmation-using-javascript/#comments</comments>
		<pubDate>Fri, 30 Jul 2010 17:58:03 +0000</pubDate>
		<dc:creator>sutharshan</dc:creator>
				<category><![CDATA[featured]]></category>
		<category><![CDATA[Headline]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[web design]]></category>
		<category><![CDATA[web development]]></category>
		<category><![CDATA[browser scripts]]></category>
		<category><![CDATA[link]]></category>

		<guid isPermaLink="false">http://sutharshan.izonedevelopers.com/?p=142</guid>
		<description><![CDATA[While I'm looking through the websites I have seen several websites are using server side scripting such as php,asp.net, jsp etc to get the confirmation from the users previous action.
I'll make it clear with a small example...
When a user wants to delete a post, the user clicks on the delete button or link that performs the delete operation. Once he clicked usually the most best appropriate manner is to get confirm from the user whether he really wants to delete the post or he clicked that mistakenly. Because if he ...]]></description>
			<content:encoded><![CDATA[<p>While I'm looking through the websites I have seen several websites are using server side scripting such as php,asp.net, jsp etc to get the confirmation from the users previous action.</p>
<p>I'll make it clear with a small example...</p>
<p style="text-align: justify;">When a user wants to delete a post, the user clicks on the delete button or link that performs the delete operation. Once he clicked usually the most best appropriate manner is to get confirm from the user whether he really wants to delete the post or he clicked that mistakenly. Because if he have clicked it mistakenly then the post will be deleted and its more inconvenience for the user. Therefore for such critical operations confirmation must be taken from the user before performing the action.</p>
<p style="text-align: justify;">Now we'll move to the topic. I have seen several websites using server side scripting to get the confirmation from the users. its actually takes more time, since the server scripts alone will reload the page from the server to produce the confirmation dialog. Which is actually a time consuming work for users and also in the developers point of view, the coding and designing is also time consuming. Therefore what i feel is the best way is to use JavaScript...</p>
<p><span style="color: #ff0000;"><strong>The following code demonstrates how to create the confirmation using JavaScript</strong></span></p>
<p><strong>For links</strong></p>
<p>&lt;a href="delete.php?id=234" title="" onclick="return confirm('Do you really want to delete?')" &gt; Delete &lt;/a&gt;</p>
<p><strong>For Buttons</strong></p>
<p>&lt;input type="submit" value="delete" onclick="return confirm('Do you really want to delete?')"  /&gt;</p>
<p><strong><em><span style="text-decoration: underline;">What really happens in the above JavaScript codes?</span></em></strong></p>
<p>In the both examples we have used "onclick" event handler, which actually triggers when we click the link or button which even contains that handler.</p>
<blockquote>
<p style="text-align: justify;"><span style="color: #ff0000;">The most important think is that, HTML hyper-links starts to work (navigate) when the mouse released and not in the mouse click. You can simply observe this behavior by click on the hyperlink and drag the mouse pointer out of the hyperlink without releasing and release it outside the hyperlink. if you do like this, the hyperlink wont work. simply because it works only on release. The same concept is applicable for the form elements also.</span></p>
</blockquote>
<p style="text-align: justify;"><span style="color: #000000;">Now we'll go back to the example. the event handler "onclick" triggers when the mouse button is pressed and then it calls the JavaScript confirmation dialog box.</span></p>
<p style="text-align: justify;"><a rel="attachment wp-att-143" href="http://sutharshan.izonedevelopers.com/2010/07/30/confirmation-using-javascript/confirm/"><img class="alignleft size-medium wp-image-143" title="confirm" src="http://sutharshan.izonedevelopers.com/wp-content/uploads/2010/07/confirm-300x102.jpg" alt="" width="300" height="102" /></a></p>
<p style="text-align: justify;"><span style="color: #000000;">In That the user can use either OK or Cancel. If the user clicks OK button, it returns true and if the user clicks cancel it returns false. When it returns true the click event will be active and because of that, the mouse release event will be performed and the required action will happen. But if it returns false, the button or the link click event will not be recognized and therefore no actions will be performed. In other words, if it returns false, then for the browser, the user doesn't have click the link/button. </span></p>
<p style="text-align: justify;"><span style="color: #000000;">Therefore by adding a small piece of JavaScript code, we can get the confirmation from the users, rather than using server side languages which takes time to load.</span></p>
<p style="text-align: justify;"><span style="color: #000000;"><strong><span style="text-decoration: underline;">Another version of JavaScript code added for advance users</span></strong></span></p>
<p style="text-align: justify;"><span style="color: #000000;">add this code inside &lt;head&gt; tag</span></p>
<p style="text-align: justify;"><span style="color: #000000;">&lt;script language="text/javascript"&gt;<br />
window.onload=init;<br />
</span>function init()<br />
{<br />
document.getElementById("link").onclick=getconfirm;<br />
}</p>
<p style="text-align: justify;">function getconfirm(){<br />
return confirm("Do you really want to delete?");<br />
}<br />
&lt;/scirpt&gt;</p>
<p style="text-align: justify;">
<p style="text-align: justify;">add this code inside &lt;body&gt; tag for the link</p>
<p style="text-align: justify;">&lt;a href="delete.php" id="link"&gt;Delete&lt;/delete&gt;</p>
<p style="text-align: justify;">
<p style="text-align: justify;">Hope its useful for most of the people who are new to JavaScript and web development. PLease leave your comments and questions.</p>
<p style="text-align: justify;">Thank you.</p>
<p class="facebook"><a href="http://www.facebook.com/share.php?u=http://sutharshan.izonedevelopers.com/2010/07/30/confirmation-using-javascript/" target="_blank"><img src="http://sutharshan.izonedevelopers.com/wp-content/plugins/add-to-facebook-plugin/facebook_share_icon.gif" alt="Share on Facebook" title="Share on Facebook" /></a></p>]]></content:encoded>
			<wfw:commentRss>http://sutharshan.izonedevelopers.com/2010/07/30/confirmation-using-javascript/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>How to Get Email Addresses for Sending Bulk Email for Free</title>
		<link>http://sutharshan.izonedevelopers.com/2010/07/30/how-to-get-email-addresses-for-sending-bulk-email-for-free/</link>
		<comments>http://sutharshan.izonedevelopers.com/2010/07/30/how-to-get-email-addresses-for-sending-bulk-email-for-free/#comments</comments>
		<pubDate>Fri, 30 Jul 2010 12:38:43 +0000</pubDate>
		<dc:creator>sutharshan</dc:creator>
				<category><![CDATA[Common]]></category>
		<category><![CDATA[email]]></category>
		<category><![CDATA[bulk email]]></category>
		<category><![CDATA[email marketing]]></category>
		<category><![CDATA[opt in]]></category>
		<category><![CDATA[spam]]></category>

		<guid isPermaLink="false">http://sutharshan.izonedevelopers.com/?p=138</guid>
		<description><![CDATA[While I'm reading some article in the web, I found this article as very useful for everyone. I would like to share this article with you all. Thanks to G-Lock Softwares.
After you have your website or blog up and running, the next step in your online business should be obtaining an email list. Having a list of email addresses can be very beneficial for your marketing. You can send those people email newsletters informing them about your products, services, special offers, and other stuff so it can be a great ...]]></description>
			<content:encoded><![CDATA[<p><span style="color: #ff0000;"><strong>While I'm reading some article in the web, I found this article as very useful for everyone. I would like to share this article with you all. Thanks to G-Lock Softwares.</strong></span></p>
<p>After you have your website or blog up and running, the next step in your online business should be obtaining an email list. Having a list of email addresses can be very beneficial for your marketing. You can send those people email newsletters informing them about your products, services, special offers, and other stuff so it can be a great way for you to increase your sales.</p>
<p>There are several ways you can build your email list. The easiest and fastest way is to buy a ready mailing list on the Internet and start broadcasting your bulk emails to it. <strong>But know this:</strong> purchasing or renting an email list is the first step to be classified as spammer.</p>
<p>Sending emails blindly in the hope that someone may be interested is not a good email marketing practice and it won’t bring you any profit. Those people don’t know who you are; either they don’t know anything about your products or services. At best they will delete your email, at worse they will hit “Report Spam” button on it. A certain amount of spam complaints and… voila, your email account is shut down and your sender reputation is spoiled forever. So, what’s the answer? <strong>Purchasing or renting an email list is certainly no way to go.</strong></p>
<p><strong>The first thing to remember:</strong> email marketing starts with permission. Permission is the key factor that determines whether you will succeed or fail. With regards to email marketing, permission is the consent of the recipient to receive emails from the sender. People give their consent to get your mailings. Your website visitors are your potential recipients. They come to your website, they like it and they want to get more information about your products, services, or any other information you can provide. You just need to provide them with the opportunity to request that information. In other words, you need to give them an option to subscribe to your mailings. Here is where a signup form comes into play.</p>
<p>You need to place your signup form where it can be easily found. Imagine yourself browsing numerous website pages searching where that cherished form may be hiding. Many people will simply give up and go away to your competitor’s website. Hence, you lose subscribers and potential buyers.</p>
<p><img title="How to Get Email Addresses for Sending Bulk Email for Free" src="http://www.glockeasymail.com/images/signup-form-widget.png" border="1" alt="Email list building - signup form widget" hspace="10" vspace="0" align="left" />And moreover, you need to provide people with a solid reason to give you their email address. Why should they subscribe? Explain clearly somewhere above your signup form what they will receive in return for their emails: tips, tricks, news, case studies, special offers, promotions, or whatever you will send them. I.e. give a reason to subscribe to your mailing list. And don’t forget to state your privacy policy. A line like “We will not share your email address with any third party” below the signup form would be enough.</p>
<p>With all that said, your signup form should be put at the place where it’s clearly visible, give a reason to subscribe and take the risks away by stating your privacy policy.</p>
<p>A great way to catch the visitor’s attention is by using a pop up subscription form. It used to suddenly crop up in front of your eyes while you are viewing a web page. You just can’t miss it. You can either subscribe or quickly close it if you don’t want to signup. Absolutely, a floating signup form grabs the visitor’s attention and helps collect more subscribers. However, many people consider such floating subscription forms quite annoying and say it’s the last thing they will use on their website or blog. That’s why if you decide on a such type of the subscription form,  you should better make sure it is visible to the first time visitor only.</p>
<p>If you think a floating subscription form is not for you, you can use a standard signup form at the side bar of your site. After a visitor enters his email address and name, they are sent to your database. This is an opt-in list building method.</p>
<p>Better yet if your signup process uses a double opt-in method. After the user fills in the submission form and hits “Submit”, he receives an email with a confirmation link. He must click on that link to confirm his subscription and only after this the email address is added to the mailing list.</p>
<p>Although a double opt-in method requires an extra step from the subscriber, this method is more reliable and accurate. People may mistype the email address, or change their mind after sending the subscription request, or someone may deliberately subscribe another person without their knowing it. A double opt-in method helps prevent malicious subscriptions and ensure that the mailing list contains only verified valid email addresses.</p>
<p><strong>So, how do you put a signup form on your blog?</strong> It has never been easier than today. <a rel="nofollow" href="http://www.glockeasymail.com/wordpress-email-newsletter-plugin-for-double-opt-in-subscription/"><strong>Free Double Opt-In Manager plugin</strong></a> is what you need if you have a WordPress blog.</p>
<p>What is nice about it is that this email list management plugin allows you fully automate your subscription process. It will send an email with a confirmation link to the subscriber and after the subscription is confirmed, the plugin will send a welcome email to the new subscriber.</p>
<p>The plugin includes default confirmation and welcome message text. You can modify it or <a href="http://www.glockeasymail.com/9-tips-for-writing-a-welcome-message/">write your custom welcome message</a> to fit your marketing needs. The details of new subscribers are saved to the internal WordPress database. So, you get your in-house mailing list of subscribers interested in receiving email marketing newsletters from you.</p>
<p>Plus, you can easily handle unsubscribe requests using this mailing list management plugin. If a user unsubscribes from your list, the plugin marks the user as "Unsubscribed" in your WordPress database. You can also choose the option to send the user a notification that his email address was successfully unsubscribed.</p>
<p>You can manage the subscribers inside your WordPress database and <strong>export the list</strong> at any time for use in your <a rel="nofollow" href="http://www.glockeasymail.com/">email newsletter sending program</a>.</p>
<p>Or, there is an easier way. You can send newsletters to your WP subscribers <strong>without the need to export-import the list</strong>.</p>
<p>Simply <a href="http://www.glockeasymail.com/downloads/"><strong>download a free version of G-Lock EasyMail</strong></a>, <a href="http://www.glockeasymail.com/tutorials/import-subscribers-wordpress-database-glock-easymail/">connect directly to your WordPress subscribers from G-Lock EasyMail address book</a> and <a href="http://www.glockeasymail.com/ultimate-email-marketing-guide/personalizing-the-email-for-each-recipient/">send personalized email</a> to them right away.</p>
<p><img title="How to Get Email Addresses for Sending Bulk Email for Free" src="http://www.glockeasymail.com/images/connect-wp.jpg" alt="Connect to WP subscribers from G-Lock EasyMail" width="480" height="382" /></p>
<p>You can also use the plugin to convert your blog RSS feed into an email newsletter and send it out to your subscribers. You can design the style and content of your email newsletter yourself and you can schedule your email broadcast weekly, monthly or as soon as you add a certain number of new posts to your blog.</p>
<p>Using a subscription form on your blog or website is a great way to organically build your own permission-based email list in the best email marketing practices. As far as your email list grows, more subscribers are likely to be converted into your customers and bring you more sales.</p>
<p class="facebook"><a href="http://www.facebook.com/share.php?u=http://sutharshan.izonedevelopers.com/2010/07/30/how-to-get-email-addresses-for-sending-bulk-email-for-free/" target="_blank"><img src="http://sutharshan.izonedevelopers.com/wp-content/plugins/add-to-facebook-plugin/facebook_share_icon.gif" alt="Share on Facebook" title="Share on Facebook" /></a></p>]]></content:encoded>
			<wfw:commentRss>http://sutharshan.izonedevelopers.com/2010/07/30/how-to-get-email-addresses-for-sending-bulk-email-for-free/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Basics of web designing</title>
		<link>http://sutharshan.izonedevelopers.com/2010/07/29/basics-of-web-designing/</link>
		<comments>http://sutharshan.izonedevelopers.com/2010/07/29/basics-of-web-designing/#comments</comments>
		<pubDate>Thu, 29 Jul 2010 10:11:12 +0000</pubDate>
		<dc:creator>sutharshan</dc:creator>
				<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[web design]]></category>
		<category><![CDATA[web development]]></category>
		<category><![CDATA[accessibility]]></category>
		<category><![CDATA[community]]></category>
		<category><![CDATA[forms]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[link]]></category>
		<category><![CDATA[meta tags]]></category>
		<category><![CDATA[W3C]]></category>

		<guid isPermaLink="false">http://sutharshan.izonedevelopers.com/?p=136</guid>
		<description><![CDATA[There are lots of web designers and web developers are around the world. Most of the website designers are those who have directly started web designing once they have finished the cause as a freelancer.  Actually its a very good job to start with, but there are some problems in the websites that are designed by the fresh freelance designers. Some of them are listed below.

No proper HTML standards are maintained.
Most of the webpage titles are missing
Empty HTML tags are not properly handled
Web pages does not contain any meta tags such as ...]]></description>
			<content:encoded><![CDATA[<p>There are lots of web designers and web developers are around the world. Most of the website designers are those who have directly started web designing once they have finished the cause as a freelancer.  Actually its a very good job to start with, but there are some problems in the websites that are designed by the fresh freelance designers. Some of them are listed below.</p>
<ul>
<li>No proper HTML standards are maintained.</li>
<li>Most of the webpage titles are missing</li>
<li>Empty HTML tags are not properly handled</li>
<li>Web pages does not contain any meta tags such as keywords, description etc.</li>
</ul>
<p>Not only these, there are many more problems exists with the websites designed by the fresh web designers. Web designing is not about creating attractive website with good content. It should maintain the proper standards of HTML, and other things such as font sizes, styles, color combinations etc.</p>
<p>This is the first part of the web designing series which will describes how the website should be designed and maintained. I expect the contributions from other web designers and the readers to create a proper articles to provide the correct and best information. The major important thing is that, the HTML standards must be maintained and also web designers should read the W3C standards and the WAI before starting the website designing work. It will help them to understand the real factors that are affecting the website and also leads to good websites with proper standards.</p>
<p>The links of W3C and the WAI are given below.</p>
<p>W3C - <a href="http://www.w3.org/">http://www.w3.org/</a></p>
<p>WAI - <a href="http://www.w3.org/WAI/">http://www.w3.org/WAI/</a></p>
<p>To check whether the website is properly done based on the W3 Standards, you can use the following online HTML validator to validate your webpage.</p>
<p><a href="http://validator.w3.org/">http://validator.w3.org/</a></p>
<p>more details about web designing will follow on coming weeks.</p>
<p>Thank you.</p>
<p class="facebook"><a href="http://www.facebook.com/share.php?u=http://sutharshan.izonedevelopers.com/2010/07/29/basics-of-web-designing/" target="_blank"><img src="http://sutharshan.izonedevelopers.com/wp-content/plugins/add-to-facebook-plugin/facebook_share_icon.gif" alt="Share on Facebook" title="Share on Facebook" /></a></p>]]></content:encoded>
			<wfw:commentRss>http://sutharshan.izonedevelopers.com/2010/07/29/basics-of-web-designing/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>good bye to MySQL</title>
		<link>http://sutharshan.izonedevelopers.com/2010/06/10/end-of-mysql/</link>
		<comments>http://sutharshan.izonedevelopers.com/2010/06/10/end-of-mysql/#comments</comments>
		<pubDate>Thu, 10 Jun 2010 14:18:56 +0000</pubDate>
		<dc:creator>sutharshan</dc:creator>
				<category><![CDATA[Common]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[database]]></category>
		<category><![CDATA[MYSQL]]></category>
		<category><![CDATA[oracle]]></category>
		<category><![CDATA[sun]]></category>
		<category><![CDATA[web development]]></category>

		<guid isPermaLink="false">http://sutharshan.izonedevelopers.com/?p=104</guid>
		<description><![CDATA[Well the topic seems worrying lots of people, specially the open source lovers. But there were some rumors lots of people talk about is "End of MySQL". When sun micro systems brought mysql people say that's the rebirth for MySQL and afterward, oracle brought sun microsystems. Now people say as since oracle wants to promote their database, they need to demote the popular competitors. Which means MySQL is one of the major competitor for oracle, because its free and more people uses it.
In my opinion it's a false statement because ...]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;">Well the topic seems worrying lots of people, specially the open source lovers. But there were some rumors lots of people talk about is "End of MySQL". When sun micro systems brought mysql people say that's the rebirth for MySQL and afterward, oracle brought sun microsystems. Now people say as since oracle wants to promote their database, they need to demote the popular competitors. Which means MySQL is one of the major competitor for oracle, because its free and more people uses it.</p>
<p style="text-align: justify;">In my opinion it's a false statement because Oracle is a very very powerful database tools which provides the higher level features to manage data ware house and data mining. In technical terms it's called as OLAP (Online analytical processing). In the other hand, we have mysql which is like a traditional database system(relational model) and its still improving its features. Main different is that, mysql database was mainly used for web based applications and php applications where php have direct methods to access mysql database. But oracle is mainly used for enterprise applications and there is no way that these two DBMS can compete each other based on the current use. Another think that i notice is that ofter oracle brought sun microsystems oracle have implemented the database machine.</p>
<p style="text-align: justify;"><span style="color: #800000;">The database machine means is a computer or special hardware that stores and retrieves data from a database. It is specially designed for database access and is coupled to the main (front-end) computer(s) by a high-speed channel. This contrasts with a database server, which is a computer in a local area network that holds a database. The database machine is tightly coupled to the main CPU, whereas the database server is loosely coupled via the network (definition is taken from wikipedia)</span></p>
<p style="text-align: justify;">The world's first OLTP database machine is produced by oracle. Means it contains powerful server machine(Sun servers). please refer this link for more details about oracle server (<a href="http://www.oracle.com/us/products/database/database-machine-069034.html">http://www.oracle.com/us/products/database/database-machine-069034.html</a>). In my view, this is why oracle brought sun microsystem. They need the world's best server technology to run the world's powerful DBMS. and now they have combined them both and produce the first machine. Now this is the beginning and in coming years we can expect more innovations from this combined force.  So that's my conclusion. Oracle brought sun microsystems to improve and produce powerful solutions. They didn't brought to demote MySQL. that means</p>
<h1 style="text-align: center;"><span style="color: #ff0000;">MYSQL NEVER DIES</span></h1>
<p style="text-align: justify;"><span style="color: #ff0000;"><strong><span style="color: #800000;">BEST(sun) with the BEST(oracle) produces the BEST</span></strong><br />
</span></p>
<p class="facebook"><a href="http://www.facebook.com/share.php?u=http://sutharshan.izonedevelopers.com/2010/06/10/end-of-mysql/" target="_blank"><img src="http://sutharshan.izonedevelopers.com/wp-content/plugins/add-to-facebook-plugin/facebook_share_icon.gif" alt="Share on Facebook" title="Share on Facebook" /></a></p>]]></content:encoded>
			<wfw:commentRss>http://sutharshan.izonedevelopers.com/2010/06/10/end-of-mysql/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>php an introduction</title>
		<link>http://sutharshan.izonedevelopers.com/2010/06/08/php-an-introduction/</link>
		<comments>http://sutharshan.izonedevelopers.com/2010/06/08/php-an-introduction/#comments</comments>
		<pubDate>Tue, 08 Jun 2010 08:38:55 +0000</pubDate>
		<dc:creator>sutharshan</dc:creator>
				<category><![CDATA[featured]]></category>
		<category><![CDATA[Headline]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[web development]]></category>

		<guid isPermaLink="false">http://sutharshan.izonedevelopers.com/?p=96</guid>
		<description><![CDATA[PHP (Hypertext Preprocessor) is an open source, server-side, HTML embedded scripting language used to create dynamic Web pages. PHP script is embedded within a HTML document and the programmer can jump between HTML and PHP seamlessly within the document while the code remains inaccessible to users since it is processed on the server. It combines the power of CGI scripting with the ease of working within HTML.
PHP offers several key advantages:

Cross-platform operability
Compatibility with a wide variety of databases
Support for most current web servers
Communicates with numerous network protocols
Not limited to HTML ...]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;"><a rel="attachment wp-att-99" href="http://sutharshan.izonedevelopers.com/?attachment_id=99"><img class="alignleft size-medium wp-image-99" title="php" src="http://sutharshan.izonedevelopers.com/wp-content/uploads/2010/06/php-300x157.png" alt="" width="300" height="157" /></a>PHP (Hypertext Preprocessor) is an open source, server-side, HTML embedded scripting language used to create dynamic Web pages. PHP script is embedded within a HTML document and the programmer can jump between HTML and PHP seamlessly within the document while the code remains inaccessible to users since it is processed on the server. It combines the power of CGI scripting with the ease of working within HTML.</p>
<p style="text-align: justify;">PHP offers several key advantages:</p>
<ul style="text-align: justify;">
<li>Cross-platform operability</li>
<li>Compatibility with a wide variety of databases</li>
<li>Support for most current web servers</li>
<li>Communicates with numerous network protocols</li>
<li>Not limited to HTML output</li>
<li>Strong text processing capabilities</li>
</ul>
<p style="text-align: justify;">Assuming you have an operating system and Web server setup on your server, PHP <a name="AdBriteInlineAd_installation"></a> is fairly easy. Essentially you need to <a name="AdBriteInlineAd_install"></a> the PHP <a name="AdBriteInlineAd_processor"></a> and have your server associate .php files with it. <a href="http://www.php.net/">PHP.net</a>has detailed installation instructions for <a href="http://us2.php.net/manual/en/install.unix.php">UNIX/Linux</a>, <a href="http://us2.php.net/manual/en/install.windows.php">Windows</a>, and <a href="http://us2.php.net/manual/en/install.macosx.php">Mac OS</a> on its Web site.</p>
<p style="text-align: justify;">Once you have PHP installed, all you need to do is place your php files in your Web directories and the server will automatically parse them when someone points their web-browser to that page.</p>
<p style="text-align: justify;"><strong>Getting Started with PHP</strong></p>
<p style="text-align: justify;">The one thing that holds true regardless of the technology you work with is this: the infamous “hello world” is the way to get started. In PHP, our “hello world” would look as follows:</p>
<pre style="text-align: justify;">&lt;html&gt;
 &lt;head&gt;
  &lt;title&gt;Hello World Example&lt;/title&gt;
 &lt;/head&gt;
 &lt;body&gt;
 &lt;?php echo '&lt;p&gt;Hello World&lt;/p&gt;'; ?&gt;
&lt;/body&gt;
&lt;/html&gt;</pre>
<p style="text-align: justify;">As you can see, it is essentially a HTML page with one line of PHP code indicated by the opening tag <tt>&lt;?php</tt> and the closing tag of <tt>?&gt;</tt>. It uses the PHP <a name="AdBriteInlineAd_function"></a> “echo” to output the content contained within single quotes.</p>
<p style="text-align: justify;">The beauty of PHP is that you can jump in and out of PHP coding using these tags within your HTML. Like with all text-based code, use a text editor (not a word processor) for best <a name="AdBriteInlineAd_results"></a>.</p>
<p style="text-align: justify;">If you wish to see all your PHP system information and configuration details, add the following line to the PHP file you created above:</p>
<p style="text-align: justify;"><tt>&lt;?php phpinfo(); ?&gt;</tt></p>
<p style="text-align: justify;">As you would expect, PHP has a complete syntax all its own. From variables to operators to built-in functions, it is pretty much the same as anything else – refer to the reference manual until it becomes<a name="AdBriteInlineAd_second"></a> nature.</p>
<p style="text-align: justify;"><strong>A Quick Form</strong></p>
<p style="text-align: justify;">Let’s face it; forms are the cornerstone of almost all web interactivity. As such, let’s explore some very basic form processing with PHP to get the hang of it.</p>
<p style="text-align: justify;">First you create the HTML form and call it form.html</p>
<pre style="text-align: justify;">&lt;html&gt;
&lt;head&gt;&lt;/head&gt;
&lt;body&gt;
&lt;form action="form_process.php" method="post"&gt;
<a name="AdBriteInlineAd_Enter"></a> your comments: &lt;input type="text" name="comments" size="30"&gt; &lt;input type="submit" value="Send"&gt;
&lt;/form&gt;
&lt;/body&gt;
&lt;/html&gt;</pre>
<p style="text-align: justify;">If you are familiar with writing CGI to process your forms, you can see that the HTML side is almost identical with the <tt>&lt;form action="form_process.php" method="post"&gt;</tt> being the critical piece. When a user hits the “Send” button, it calls the .php file entitled form_process.php. This is the file that will be able to capture the input the user <a name="AdBriteInlineAd_entered"></a> into the form and “do” something with it (e-mail, display on a page, etc.).</p>
<p style="text-align: justify;">Let’s assume form_process.php is designed to display the user’s comments on a Web page. The script would look like:</p>
<pre style="text-align: justify;">&lt;html&gt;
&lt;head&gt;&lt;/head&gt;
&lt;body&gt;</pre>
<pre style="text-align: justify;">&lt;?php
// get the form data
$field1 = $_POST['comments'];
// do something with it
echo "You said: &lt;i&gt;$field1&lt;/i&gt;";
?&gt;</pre>
<pre style="text-align: justify;">&lt;/body&gt;
&lt;html&gt;</pre>
<p style="text-align: justify;">There are a few key points worth making about this. First, whenever a form is submitted and it uses the POST method, PHP stores it in a special container variable called $_POST. You can retrieve the information by storing it in a variable (in this case $field1) by referring to $_POST ['the_name_you_gave_the_field_on_your_form']. Whether you have one form field or a hundred, the retrieval is the same. If you used the GET method, the retrieval is similar using the $_GET variable.</p>
<p style="text-align: justify;">As you can see, the remainder of the script simply echoes back the contents of the variable onto the Web page.</p>
<p style="text-align: justify;">If you want a quick and dirty path to getting your forms up and running, there are a host of free and low-cost PHP scripts for you to use to e-mail your form results and/or store them in a database. Some of the larger collections can be found at <a href="http://php.resourceindex.com/Complete_Scripts/Form_Processing/">The PHP Resource Index</a> and <a href="http://www.hotscripts.com/PHP/Scripts_and_Programs/Form_Processors/index.html">Hotscripts</a>.</p>
<p style="text-align: justify;">Now you have the very basics. In fact, you are well on your way to understanding and being able to tweak other people’s scripts for your own use. As with any new language experimentation and trial and error is the best teacher.</p>
<p class="facebook"><a href="http://www.facebook.com/share.php?u=http://sutharshan.izonedevelopers.com/2010/06/08/php-an-introduction/" target="_blank"><img src="http://sutharshan.izonedevelopers.com/wp-content/plugins/add-to-facebook-plugin/facebook_share_icon.gif" alt="Share on Facebook" title="Share on Facebook" /></a></p>]]></content:encoded>
			<wfw:commentRss>http://sutharshan.izonedevelopers.com/2010/06/08/php-an-introduction/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

