<?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>Free Tutorials by Web Trainings</title>
	<atom:link href="http://www.webtrainings.in/tutorials/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.webtrainings.in/tutorials</link>
	<description></description>
	<lastBuildDate>Thu, 05 Apr 2012 14:46:51 +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>Free Zend PHP Certification Exam Guide</title>
		<link>http://www.webtrainings.in/tutorials/free-zend-php-certification-exam-guide/</link>
		<comments>http://www.webtrainings.in/tutorials/free-zend-php-certification-exam-guide/#comments</comments>
		<pubDate>Wed, 08 Feb 2012 02:36:31 +0000</pubDate>
		<dc:creator></dc:creator>
				<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://www.webtrainings.in/tutorials/?p=100</guid>
		<description><![CDATA[Download the Free Zend PHP Certification Guide http://downloads.zend.com/guides/php5.3/PHP_5-3_Study_Guide_v1a.pdf &#160;]]></description>
			<content:encoded><![CDATA[<p>Download the Free Zend PHP Certification Guide</p>
<p>http://downloads.zend.com/guides/php5.3/PHP_5-3_Study_Guide_v1a.pdf</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.webtrainings.in/tutorials/free-zend-php-certification-exam-guide/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Simple Mail Function in PHP &#8211; Mail Program</title>
		<link>http://www.webtrainings.in/tutorials/simple-mail-function-in-php-mail-program/</link>
		<comments>http://www.webtrainings.in/tutorials/simple-mail-function-in-php-mail-program/#comments</comments>
		<pubDate>Wed, 08 Feb 2012 02:35:25 +0000</pubDate>
		<dc:creator></dc:creator>
				<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://www.webtrainings.in/tutorials/?p=98</guid>
		<description><![CDATA[Just change the Mail address from info@gmail.com to your own mail address and upload the code on server and its ready to use. HTML CODE: &#60;form id=&#8221;form1&#8243; name=&#8221;form1&#8243; method=&#8221;post&#8221; action=&#8221;"&#62; &#60;table width=&#8221;500&#8243; border=&#8221;0&#8243; cellspacing=&#8221;0&#8243; cellpadding=&#8221;10&#8243;&#62; &#60;tr&#62; &#60;td&#62;Name&#60;/td&#62; &#60;td&#62;&#60;input type=&#8221;text&#8221; name=&#8221;name&#8221; &#8230; <a href="http://www.webtrainings.in/tutorials/simple-mail-function-in-php-mail-program/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Just change the Mail address from info@gmail.com to your own mail address and upload the code on server and its ready to use.</p>
<p><strong>HTML CODE:</strong></p>
<p>&lt;form id=&#8221;form1&#8243; name=&#8221;form1&#8243; method=&#8221;post&#8221; action=&#8221;"&gt;<br />
&lt;table width=&#8221;500&#8243; border=&#8221;0&#8243; cellspacing=&#8221;0&#8243; cellpadding=&#8221;10&#8243;&gt;<br />
&lt;tr&gt;<br />
&lt;td&gt;Name&lt;/td&gt;<br />
&lt;td&gt;&lt;input type=&#8221;text&#8221; name=&#8221;name&#8221; id=&#8221;name&#8221; /&gt;&lt;/td&gt;<br />
&lt;/tr&gt;<br />
&lt;tr&gt;<br />
&lt;td&gt;Email&lt;/td&gt;<br />
&lt;td&gt;&lt;input type=&#8221;text&#8221; name=&#8221;email&#8221; id=&#8221;email&#8221; /&gt;&lt;/td&gt;<br />
&lt;/tr&gt;<br />
&lt;tr&gt;<br />
&lt;td&gt;Phone&lt;/td&gt;<br />
&lt;td&gt;&lt;input type=&#8221;text&#8221; name=&#8221;phone&#8221; id=&#8221;phone&#8221; /&gt;&lt;/td&gt;<br />
&lt;/tr&gt;<br />
&lt;tr&gt;<br />
&lt;td&gt;&amp;nbsp;&lt;/td&gt;<br />
&lt;td&gt;&lt;input type=&#8221;submit&#8221; name=&#8221;submit&#8221; id=&#8221;submit&#8221; value=&#8221;Submit&#8221; /&gt;&lt;/td&gt;<br />
&lt;/tr&gt;<br />
&lt;/table&gt;<br />
&lt;/form&gt;</p>
<p><strong>PHP CODE:</strong></p>
<p>&lt;?php<br />
if(isset($_POST['submit']))<br />
{<br />
$name=$_POST['name'];<br />
$email=$_POST['email'];<br />
$phone=$_POST['phone'];</p>
<p>$to=&#8221;info@gmail.com&#8221;;<br />
$sub=&#8221;You got mail from $name&#8221;;<br />
$body=&#8221;\n<br />
Name: $name \n<br />
Email: $email \n<br />
Phone: $phone \n&#8221;;<br />
$headers=&#8221;From: $email \r\n&#8221;;</p>
<p>if(mail($to,$sub,$body,$headers))<br />
{<br />
//Thankyou mail to sender</p>
<p>$to2=$email;<br />
$sub2=&#8221;Thankyou $name&#8221;;<br />
$body2=&#8221;Thanks for registraion&#8221;;<br />
$headers2=&#8221;From:info@gmail.com \r\n&#8221;;<br />
mail($to2,$sub2,$body2,$headers2);<br />
}<br />
else<br />
{<br />
echo &#8220;Mail not Sent&#8221;;<br />
}<br />
}<br />
?&gt;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.webtrainings.in/tutorials/simple-mail-function-in-php-mail-program/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Random Password Generator Program in PHP</title>
		<link>http://www.webtrainings.in/tutorials/random-password-generator-program-in-php/</link>
		<comments>http://www.webtrainings.in/tutorials/random-password-generator-program-in-php/#comments</comments>
		<pubDate>Mon, 06 Feb 2012 15:24:52 +0000</pubDate>
		<dc:creator></dc:creator>
				<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://www.webtrainings.in/tutorials/?p=95</guid>
		<description><![CDATA[PHP CODE: &#60;?php if(isset($_POST['generate'])) { $string=&#8221;abcdefghijklmnaoprstABCDEFG01234567&#8243;; $random=str_shuffle($string); $final=substr($random,0,8); } ?&#62; HTML CODE: &#60;form id=&#8221;form1&#8243; name=&#8221;form1&#8243; method=&#8221;post&#8221; action=&#8221;"&#62; &#60;p&#62; &#60;input type=&#8221;submit&#8221; name=&#8221;generate&#8221; id=&#8221;generate&#8221; value=&#8221;Generate&#8221; /&#62; &#60;/p&#62; &#60;p&#62; &#60;input type=&#8221;password&#8221; name=&#8221;pass&#8221; id=&#8221;pass&#8221; value=&#8221;&#60;?php echo $final; ?&#62;&#8221;/&#62; &#60;/p&#62; &#60;p&#62; &#60;input type=&#8221;text&#8221; name=&#8221;pass2&#8243; id=&#8221;pass2&#8243; &#8230; <a href="http://www.webtrainings.in/tutorials/random-password-generator-program-in-php/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>PHP CODE:</p>
<p>&lt;?php<br />
if(isset($_POST['generate']))<br />
{<br />
$string=&#8221;abcdefghijklmnaoprstABCDEFG01234567&#8243;;<br />
$random=str_shuffle($string);<br />
$final=substr($random,0,8);<br />
}<br />
?&gt;</p>
<p>HTML CODE:</p>
<p>&lt;form id=&#8221;form1&#8243; name=&#8221;form1&#8243; method=&#8221;post&#8221; action=&#8221;"&gt;<br />
&lt;p&gt;<br />
&lt;input type=&#8221;submit&#8221; name=&#8221;generate&#8221; id=&#8221;generate&#8221; value=&#8221;Generate&#8221; /&gt;<br />
&lt;/p&gt;<br />
&lt;p&gt;<br />
&lt;input type=&#8221;password&#8221; name=&#8221;pass&#8221; id=&#8221;pass&#8221; value=&#8221;&lt;?php echo $final; ?&gt;&#8221;/&gt;<br />
&lt;/p&gt;<br />
&lt;p&gt;<br />
&lt;input type=&#8221;text&#8221; name=&#8221;pass2&#8243; id=&#8221;pass2&#8243; value=&#8221;&lt;?php echo $final; ?&gt;&#8221; /&gt;<br />
&lt;/p&gt;<br />
&lt;/form&gt;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.webtrainings.in/tutorials/random-password-generator-program-in-php/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Find and Replace Program in PHP</title>
		<link>http://www.webtrainings.in/tutorials/find-and-replace-program-in-php/</link>
		<comments>http://www.webtrainings.in/tutorials/find-and-replace-program-in-php/#comments</comments>
		<pubDate>Mon, 06 Feb 2012 15:22:28 +0000</pubDate>
		<dc:creator></dc:creator>
				<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://www.webtrainings.in/tutorials/?p=92</guid>
		<description><![CDATA[HTML CODE: &#60;form id=&#8221;form1&#8243; name=&#8221;form1&#8243; method=&#8221;post&#8221; action=&#8221;"&#62; &#60;p&#62; &#60;textarea name=&#8221;mssg&#8221; id=&#8221;mssg&#8221; cols=&#8221;45&#8243; rows=&#8221;5&#8243;&#62;&#60;?php echo $final;?&#62;&#60;/textarea&#62; &#60;/p&#62; &#60;p&#62; &#60;input type=&#8221;submit&#8221; name=&#8221;submit&#8221; id=&#8221;submit&#8221; value=&#8221;Submit&#8221; /&#62; &#60;/p&#62; &#60;/form&#62; PHP CODE: &#60;?php if(isset($_POST['submit'])) { $mssg=$_POST['mssg']; $word=array(&#8216;kill&#8217;,'murder&#8217;,'hang&#8217;); $final=str_replace($word,&#8221;***&#8221;,$mssg); echo $final; } ?&#62;]]></description>
			<content:encoded><![CDATA[<p>HTML CODE:<br />
&lt;form id=&#8221;form1&#8243; name=&#8221;form1&#8243; method=&#8221;post&#8221; action=&#8221;"&gt;<br />
&lt;p&gt;<br />
&lt;textarea name=&#8221;mssg&#8221; id=&#8221;mssg&#8221; cols=&#8221;45&#8243; rows=&#8221;5&#8243;&gt;&lt;?php echo $final;?&gt;&lt;/textarea&gt;<br />
&lt;/p&gt;<br />
&lt;p&gt;<br />
&lt;input type=&#8221;submit&#8221; name=&#8221;submit&#8221; id=&#8221;submit&#8221; value=&#8221;Submit&#8221; /&gt;<br />
&lt;/p&gt;<br />
&lt;/form&gt;</p>
<p>PHP CODE:</p>
<p>&lt;?php<br />
if(isset($_POST['submit']))<br />
{<br />
$mssg=$_POST['mssg'];<br />
$word=array(&#8216;kill&#8217;,'murder&#8217;,'hang&#8217;);<br />
$final=str_replace($word,&#8221;***&#8221;,$mssg);<br />
echo $final;<br />
}</p>
<p>?&gt;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.webtrainings.in/tutorials/find-and-replace-program-in-php/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Simple Hash Program in PHP</title>
		<link>http://www.webtrainings.in/tutorials/simple-hash-program-in-php/</link>
		<comments>http://www.webtrainings.in/tutorials/simple-hash-program-in-php/#comments</comments>
		<pubDate>Mon, 06 Feb 2012 15:20:55 +0000</pubDate>
		<dc:creator></dc:creator>
				<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://www.webtrainings.in/tutorials/?p=90</guid>
		<description><![CDATA[HTML CODE: &#60;form id=&#8221;form1&#8243; name=&#8221;form1&#8243; method=&#8221;post&#8221; action=&#8221;"&#62; Enter Password: &#60;input type=&#8221;text&#8221; name=&#8221;pass&#8221; id=&#8221;pass&#8221; /&#62; &#60;input type=&#8221;submit&#8221; name=&#8221;submit&#8221; id=&#8221;submit&#8221; value=&#8221;Submit&#8221; /&#62; &#60;/form&#62; PHP CODE: &#60;?php echo sha1($_POST['pass']); echo &#8220;&#60;br&#62;&#8221;; echo md5($_POST['pass']); ?&#62;]]></description>
			<content:encoded><![CDATA[<p>HTML CODE:</p>
<p>&lt;form id=&#8221;form1&#8243; name=&#8221;form1&#8243; method=&#8221;post&#8221; action=&#8221;"&gt;<br />
Enter Password:<br />
&lt;input type=&#8221;text&#8221; name=&#8221;pass&#8221; id=&#8221;pass&#8221; /&gt;<br />
&lt;input type=&#8221;submit&#8221; name=&#8221;submit&#8221; id=&#8221;submit&#8221; value=&#8221;Submit&#8221; /&gt;<br />
&lt;/form&gt;<br />
PHP CODE:</p>
<p>&lt;?php<br />
echo sha1($_POST['pass']);<br />
echo &#8220;&lt;br&gt;&#8221;;<br />
echo md5($_POST['pass']);<br />
?&gt;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.webtrainings.in/tutorials/simple-hash-program-in-php/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>File Upload in PHP</title>
		<link>http://www.webtrainings.in/tutorials/file-upload-in-php/</link>
		<comments>http://www.webtrainings.in/tutorials/file-upload-in-php/#comments</comments>
		<pubDate>Mon, 06 Feb 2012 15:08:25 +0000</pubDate>
		<dc:creator></dc:creator>
				<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://www.webtrainings.in/tutorials/?p=87</guid>
		<description><![CDATA[PHP Upload is very simple to use code. Create a folder name with photos in same folder and use the below code. The following code is used to only upload word document (.doc) and PDF. You can manipulate the file &#8230; <a href="http://www.webtrainings.in/tutorials/file-upload-in-php/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>PHP Upload is very simple to use code. Create a folder name with photos in same folder and use the below code. The following code is used to only upload word document (.doc) and PDF. You can manipulate the file types to use the code according to your requirements.</p>
<p>HTML Code:</p>
<p>&lt;form action=&#8221;" method=&#8221;post&#8221; enctype=&#8221;multipart/form-data&#8221; name=&#8221;form1&#8243; id=&#8221;form1&#8243;&gt;<br />
Upload File:<br />
&lt;input type=&#8221;file&#8221; name=&#8221;photo&#8221; id=&#8221;photo&#8221; /&gt;<br />
&lt;input type=&#8221;submit&#8221; name=&#8221;upload&#8221; id=&#8221;upload&#8221; value=&#8221;Upload&#8221; /&gt;<br />
&lt;/form&gt;</p>
<p>PHP Code:</p>
<p>&lt;?php<br />
$photoname=$_FILES['photo']['name'];<br />
$phototype=$_FILES['photo']['type'];<br />
$photosize=$_FILES['photo']['size'];<br />
$phototmp=$_FILES['photo']['tmp_name'];</p>
<p>$str=str_shuffle(&#8220;abcedfghijklmn&#8221;);<br />
$new=substr($str,0,5);</p>
<p>$newfile=$new.$photoname;</p>
<p>//echo $phototype;<br />
//echo $photoname.&#8221;&lt;br&gt;&#8221;.$phototype.&#8221;&lt;br&gt;&#8221;.$photosize.&#8221;&lt;br&gt;&#8221;.$phototmp;<br />
if(($phototype==&#8221;application/pdf&#8221; || $phototype==&#8221;application/msword&#8221;) and ($photosize &lt;=100000) )<br />
{<br />
if(move_uploaded_file($phototmp,&#8221;photos/$newfile&#8221;))<br />
{<br />
echo &#8220;uploaded&#8221;;<br />
}<br />
else<br />
{<br />
echo &#8220;sorry&#8221;;<br />
}<br />
}<br />
else<br />
{<br />
echo &#8220;Sorry filetype not matching&#8221;;<br />
}<br />
?&gt;</p>
<p>Thanks</p>
<p>Mohammed Azharuddin</p>
]]></content:encoded>
			<wfw:commentRss>http://www.webtrainings.in/tutorials/file-upload-in-php/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Remove “Welcome to the FrontPage” from Joomla</title>
		<link>http://www.webtrainings.in/tutorials/how-to-remove-%e2%80%9cwelcome-to-frontpage%e2%80%9d-from-joomla-homepage/</link>
		<comments>http://www.webtrainings.in/tutorials/how-to-remove-%e2%80%9cwelcome-to-frontpage%e2%80%9d-from-joomla-homepage/#comments</comments>
		<pubDate>Mon, 25 Jul 2011 03:44:52 +0000</pubDate>
		<dc:creator></dc:creator>
				<category><![CDATA[Joomla]]></category>
		<category><![CDATA[joomla]]></category>

		<guid isPermaLink="false">http://webtrainings.in/tutorials/?p=65</guid>
		<description><![CDATA[After installation of Joomla, Everything looks fine in Joomla. You can enable or disable modules, articles etc. But most of the beginners face this issue. “Welcome to the FrontPage” will be display above the articles. The Welcome to the FrontPage &#8230; <a href="http://www.webtrainings.in/tutorials/how-to-remove-%e2%80%9cwelcome-to-frontpage%e2%80%9d-from-joomla-homepage/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><a href="http://webtrainings.in/tutorials/wp-content/uploads/2011/07/frontpage1.jpg"></a><a href="http://webtrainings.in/tutorials/wp-content/uploads/2011/07/frontpage2.jpg"></a><a href="http://webtrainings.in/tutorials/wp-content/uploads/2011/07/frontpage1.jpg"><img class="aligncenter size-full wp-image-66" title="frontpage1" src="http://webtrainings.in/tutorials/wp-content/uploads/2011/07/frontpage1.jpg" alt="" width="600" height="145" /></a></p>
<p>After installation of Joomla, Everything looks fine in Joomla. You can enable or disable modules, articles etc. But most of the beginners face this issue. “Welcome to the FrontPage” will be display above the articles. The Welcome to the FrontPage is not a module or article. It is the Title for the Default Menu Home. Follow the below procedure to remove this line.</p>
<p>Login to administrator -&gt; Menus -&gt; Main Menu -&gt; Home -&gt; Parameters (System) (Right side) -&gt; Show Page Title -&gt; Select No</p>
<p><a href="http://webtrainings.in/tutorials/wp-content/uploads/2011/07/frontpage2.jpg"><img class="aligncenter size-full wp-image-67" title="frontpage2" src="http://webtrainings.in/tutorials/wp-content/uploads/2011/07/frontpage2.jpg" alt="" width="600" height="145" /></a>This will solve the issue.</p>
<p>Web Trainings offer <a href="http://www.webtrainings.in/online/online-joomla-training.html" target="_blank">Online Joomla Training</a> in 20 Hours. Call on 9052425444 for further details.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.webtrainings.in/tutorials/how-to-remove-%e2%80%9cwelcome-to-frontpage%e2%80%9d-from-joomla-homepage/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Quality Content for Search Engines</title>
		<link>http://www.webtrainings.in/tutorials/quality-content-for-search-engines/</link>
		<comments>http://www.webtrainings.in/tutorials/quality-content-for-search-engines/#comments</comments>
		<pubDate>Wed, 02 Mar 2011 03:29:53 +0000</pubDate>
		<dc:creator></dc:creator>
				<category><![CDATA[SEO]]></category>

		<guid isPermaLink="false">http://webtrainings.in/tutorials/?p=55</guid>
		<description><![CDATA[Many SEO faced problems related to duplicate content by spammers. In many situations many competitors has copied the content from Web Trainings and claim as their own content. When we contact regarding the content copy, the competitors would say we &#8230; <a href="http://www.webtrainings.in/tutorials/quality-content-for-search-engines/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Many SEO faced problems related to duplicate content by spammers. In many situations many competitors has copied the content from <a href="http://www.webtrainings.in">Web Trainings</a> and claim as their own content. When we contact regarding the content copy, the competitors would say we are offering same course, we have not copied etc. But thanks to the new update by Google, which will keep the copy cats away from Search Engines.</p>
<p>With new algorithm update, Google has made many changes for issues related to duplicate content, which will affect the ranking of many websites. The websites with original content will rank higher and duplicate content won&#8217;t rank better in search engines.</p>
<p>Update: The Algorithm changes has been made global in April.</p>
<p>Read the complete Post :<a href="http://googleblog.blogspot.com/2011/02/finding-more-high-quality-sites-in.html">Official Google Blog: Finding more high-quality sites in search</a>: &#8220;e&#8221;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.webtrainings.in/tutorials/quality-content-for-search-engines/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>What is Web Designing Course ?</title>
		<link>http://www.webtrainings.in/tutorials/what-is-web-designing-course/</link>
		<comments>http://www.webtrainings.in/tutorials/what-is-web-designing-course/#comments</comments>
		<pubDate>Thu, 27 Jan 2011 08:56:35 +0000</pubDate>
		<dc:creator></dc:creator>
				<category><![CDATA[Web Design]]></category>
		<category><![CDATA[web designing]]></category>

		<guid isPermaLink="false">http://webtrainings.in/tutorials/?p=52</guid>
		<description><![CDATA[Website is Collection of HTML Pages which are linked together to form a website. Websites are broadly divided in to static and dynamic websites. Static websites are created using HTML / CSS / Java Script etc while to create a &#8230; <a href="http://www.webtrainings.in/tutorials/what-is-web-designing-course/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Website is Collection of HTML Pages which are linked together to form a website. Websites are broadly divided in to static and dynamic websites. Static websites are created using HTML / CSS / Java Script etc while to create a Dynamic Website you need knowledge of Server side Scripting Language (PHP, ASP or JSP etc). In web designing course you will learn how to create professional websites.</p>
<p>Are you interested to become a Professional Web Designer and Create websites for clients and companies. Web Designing Course is intended to teach the concepts of Designing, Development, Optimization to enable you to work on websites.</p>
<p>In Web Designing Course you will learn the following softwares :</p>
<ul>
<li>Basics of Web Technologies</li>
<li>Adobe Photoshop</li>
<li>Adobe Flash</li>
<li>Adobe Dreamweaver</li>
<li>HTML / XHTML</li>
<li>CSS</li>
<li>Java Script Basics</li>
<li>Web hosting</li>
<li>Website Testing</li>
<li>SEO Basics</li>
</ul>
<p>Web Trainings institute offer <a title="Web Designing Course" href="http://www.webtrainings.in/web-designing-course.html" target="_self">Web Designing Course in Hyderabad</a> for both classroom and <a title="Online Web Design Course" href="http://www.webtrainings.in/online/online-web-designing-course.html" target="_self">Online Web Designing Course</a>. Call us on 9052425444 for further details.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.webtrainings.in/tutorials/what-is-web-designing-course/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Free Jewellery Template Design</title>
		<link>http://www.webtrainings.in/tutorials/free-jewellery-template-design/</link>
		<comments>http://www.webtrainings.in/tutorials/free-jewellery-template-design/#comments</comments>
		<pubDate>Fri, 24 Dec 2010 19:46:45 +0000</pubDate>
		<dc:creator></dc:creator>
				<category><![CDATA[Templates]]></category>

		<guid isPermaLink="false">http://webtrainings.in/tutorials/?p=40</guid>
		<description><![CDATA[Free Jewelery Template Design]]></description>
			<content:encoded><![CDATA[<p>Free Jewelery Template Design</p>
<p><a href="http://webtrainings.in/tutorials/wp-content/uploads/2010/12/index71.jpg"><img class="aligncenter size-medium wp-image-43" title="Jewellery Website Template" src="http://webtrainings.in/tutorials/wp-content/uploads/2010/12/index71-300x300.jpg" alt="Jewellery Website Template" width="300" height="300" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.webtrainings.in/tutorials/free-jewellery-template-design/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

