<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Priyanka Mittal</title>
	<atom:link href="http://priyankamittal.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://priyankamittal.wordpress.com</link>
	<description>New Way To Mark The Presence</description>
	<lastBuildDate>Sat, 22 Aug 2009 16:13:49 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='priyankamittal.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Priyanka Mittal</title>
		<link>http://priyankamittal.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://priyankamittal.wordpress.com/osd.xml" title="Priyanka Mittal" />
	<atom:link rel='hub' href='http://priyankamittal.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Slideshow 2! for php :)</title>
		<link>http://priyankamittal.wordpress.com/2009/08/22/slideshow-2-for-php/</link>
		<comments>http://priyankamittal.wordpress.com/2009/08/22/slideshow-2-for-php/#comments</comments>
		<pubDate>Sat, 22 Aug 2009 16:13:49 +0000</pubDate>
		<dc:creator>Priyanka Mittal</dc:creator>
				<category><![CDATA[Training]]></category>
		<category><![CDATA[displaying images]]></category>
		<category><![CDATA[echo + php]]></category>
		<category><![CDATA[slideshow for php]]></category>
		<category><![CDATA[slideshow2]]></category>

		<guid isPermaLink="false">http://priyankamittal.wordpress.com/?p=147</guid>
		<description><![CDATA[Displaying the images I  was using  slideshow 2! Script  To display images in my project. In my project the user was uploading the images using multiple upload function, then the user was allowed to see slide show of those images. I was getting the list of images for a particular user from the database using [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=priyankamittal.wordpress.com&amp;blog=7954890&amp;post=147&amp;subd=priyankamittal&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p align="center">Displaying the images</p>
<p>I  was using  slideshow 2! Script  To display images in my project.</p>
<p>In my project the user was uploading the images using multiple upload function, then the user was allowed to see slide show of those images.</p>
<p>I was getting the list of images for a particular user from the database using SQL query. The problem that I was facing was that I was unable to make the slideshow function generic for N number of images.</p>
<p>Finally I was able to rectify this problem in code. I used the echo function to echo the file name in the script.  Php is for the server side, so all the commands are processed by the server before opening the  php file. All the statements given in the file are converted at time of execution; a simple html file is created.</p>
<p>Original code of <strong>slide show script</strong></p>
<p>Slideshow 2! Is a java script code, which is used to display the images.</p>
<p>Link for  Slideshow 2 ::  http://www.dreamcss.com/2009/02/20-beautiful-javascript-and-ajax-photo.html</p>
<p>&lt;!DOCTYPE html PUBLIC “-//W3C//DTD XHTML 1.0 Strict//EN”</p>
<p>“http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd”&gt;</p>
<p>&lt;html xmlns=”http://www.w3.org/1999/xhtml”&gt;</p>
<p>&lt;head&gt;</p>
<p>&lt;title&gt;Slideshow 2!&lt;/title&gt;</p>
<p>&lt;meta http-equiv=”content-type” content=”text/html; charset=utf-8″ /&gt;</p>
<p>&lt;meta name=”author” content=”Aeron Glemann (http://www.electricprism.com/aeron/)” /&gt;</p>
<p>&lt;link rel=”stylesheet” href=”css/slideshow.css” media=”screen” /&gt;</p>
<p>&lt;script type=”text/javascript” src=”js/mootools.js”&gt;&lt;/script&gt;</p>
<p>&lt;script type=”text/javascript” src=”js/slideshow.js”&gt;&lt;/script&gt;</p>
<p>&lt;script type=”text/javascript”&gt;</p>
<p>//&lt;![CDATA[</p>
<p>window.addEvent('domready', function(){</p>
<p>var data = {</p>
<p>'1.jpg': { caption: 'Volcano Asención in Ometepe, Nicaragua.' },</p>
<p>'2.jpg': { caption: 'A Ceibu tree.' },</p>
<p>'3.jpg': { caption: 'The view from Volcano Maderas.' },</p>
<p>'4.jpg': { caption: 'Beer and ice cream.' }</p>
<p>};</p>
<p>var myShow = new Slideshow('show', data, {controller: true, height: 300, hu: 'images/', thumbnails: true, width: 400});</p>
<p>});</p>
<p>//]]&gt;</p>
<p>&lt;/script&gt;</p>
<p>&lt;/head&gt;</p>
<p>&lt;body&gt;</p>
<p>&lt;div id=”show”&gt;</p>
<p>&lt;img src=”images/1.jpg” alt=”Volcano Asención in Ometepe, Nicaragua.” /&gt;</p>
<p>&lt;/div&gt;</p>
<p>&lt;/body&gt;</p>
<p>&lt;/html&gt;</p>
<p><strong>Using the slideshow script for the php , the proper solution which I used for generalizing the slideshow script for N no. of images  : </strong></p>
<p>// opening the database</p>
<p>$connection=mysql_connect(”localhost”,’root’,”)or die (”error occured”);</p>
<p>mysql_select_db(first_project)or die(”Could not open the datbase “);</p>
<p>mysql_select_db(first_project)or die(”Could not open the datbase “);</p>
<p>$s=”select original,caption from images where user like ‘$user’ “;</p>
<p>$result=mysql_query($s) or die(”could not compile”);</p>
<p>// getting the name and caption of picture</p>
<p>$result=mysql_query($s) or die(&#8220;could not compile&#8221;);</p>
<p>if(mysql_num_rows($result) &gt; 0)</p>
<p>{</p>
<p>$required1=array();</p>
<p>while($row = mysql_fetch_row($result))</p>
<p>{</p>
<p>array_push($required1,&#8221;&#8216;&#8221;.$row[0].&#8221;&#8216;:{ caption:&#8217;&#8221;.$row[1].&#8221;&#8216;}&#8221;);</p>
<p>}</p>
<p>// making additions in array elements and creating a string from the array elements.</p>
<p>$a=implode(&#8220;,&#8221;,$required1);</p>
<p>mysql_free_result($result);</p>
<p>mysql_close($connection);</p>
<p>}</p>
<p>&lt;html&gt;</p>
<p>&lt;head&gt; Images &lt;/head&gt;</p>
<p>&lt;body&gt;</p>
<p>&lt;link rel=”stylesheet” type=”text/css” href=”css/slideshow.css” media=”screen” /&gt;</p>
<p>&lt;script type=”text/javascript” src=”js/mootools.js”&gt;&lt;/script&gt;</p>
<p>&lt;script type=”text/javascript” src=”js/slideshow.js”&gt;&lt;/script&gt;</p>
<p>&lt;script type=”text/javascript”&gt;</p>
<p>window.addEvent(’domready’, function(){</p>
<p><strong>var data = {</strong></p>
<p>&lt;?php echo $a?&gt;</p>
<p><strong>}; </strong></p>
<p>var myShow = new Slideshow(’show’, data, {controller: true, height: 300, hu: ‘uploaded_files/’, thumbnails: false, width: 400});</p>
<p>});</p>
<p>//]]&gt;</p>
<p>&lt;/script&gt;</p>
<p>&lt;/head&gt;</p>
<p>&lt;body&gt;</p>
<p>&lt;div id=”show”&gt;</p>
<p>&lt;img src=”uploaded_files/1.jpg” alt=”Volcano Asención in Ometepe, Nicaragua.” /&gt;</p>
<p>&lt;/div&gt;</p>
<p>&lt;/body&gt;</p>
<p>&lt;/html&gt;</p>
<p>This Slideshow script is really good, but it is most suited for images of same dimension. The script alters the images according to the dimensions mentioned in the function. When the script is used to display images of different dimension, it converts the images into the fixed dimension, thus the portion of images are removed. L</p>
<p>If we give large dimensions in the function, then there might not be problem in display images with large dimensions, but the images of small dimensions are stretched, thus the image quality is ruined. L</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/priyankamittal.wordpress.com/147/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/priyankamittal.wordpress.com/147/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/priyankamittal.wordpress.com/147/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/priyankamittal.wordpress.com/147/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/priyankamittal.wordpress.com/147/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/priyankamittal.wordpress.com/147/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/priyankamittal.wordpress.com/147/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/priyankamittal.wordpress.com/147/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/priyankamittal.wordpress.com/147/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/priyankamittal.wordpress.com/147/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/priyankamittal.wordpress.com/147/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/priyankamittal.wordpress.com/147/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/priyankamittal.wordpress.com/147/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/priyankamittal.wordpress.com/147/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=priyankamittal.wordpress.com&amp;blog=7954890&amp;post=147&amp;subd=priyankamittal&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://priyankamittal.wordpress.com/2009/08/22/slideshow-2-for-php/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/e9804fc290303866d1aabda08ae33625?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">priyanka</media:title>
		</media:content>
	</item>
		<item>
		<title>Some help required in 1st project</title>
		<link>http://priyankamittal.wordpress.com/2009/06/28/some-help-required/</link>
		<comments>http://priyankamittal.wordpress.com/2009/06/28/some-help-required/#comments</comments>
		<pubDate>Sun, 28 Jun 2009 12:35:12 +0000</pubDate>
		<dc:creator>Priyanka Mittal</dc:creator>
				<category><![CDATA[Training]]></category>

		<guid isPermaLink="false">http://priyankamittal.wordpress.com/?p=142</guid>
		<description><![CDATA[Finally the coding part of my first mini project is nearly complete . It seemed to be a very simple project at first for coding, but it wasn’t. It made me combine all the things together. I got to learn many interesting and useful things in this project. I have done the coding mainly in [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=priyankamittal.wordpress.com&amp;blog=7954890&amp;post=142&amp;subd=priyankamittal&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Finally the coding part of my first mini project is nearly complete <img src='http://s0.wp.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' />  . It seemed to be a very simple project at first for coding, but it wasn’t. It made me combine all the things together. I got to learn many interesting and useful things in this project. I have done the coding mainly in php.</p>
<p>The first project aims at building a small website using PHP and Mysql that shows a user registration page. Once user is logged in, the person can upload photos and can also view the photos the person uploaded earlier.</p>
<p>In the project I have created a homepage which offers signup option and signin option. When new person creates the account, the signup details are stored in the database.</p>
<p>Then a new page opens up which shows option of uploading picture and of viewing images. When the user chooses the upload option then a upload form is displayed. Then control is shifted back to previous page.</p>
<p>When the user chooses the display images option, then the images are displayed using Slideshow 2! .</p>
<p><span style="color:#800000;">Slideshow 2!</span> Is a java script code, which is used to display the images.</p>
<p>Link for  Slideshow 2 ::  http://www.dreamcss.com/2009/02/20-beautiful-javascript-and-ajax-photo.html</p>
<p>But I am having problem in integrating php and java script.</p>
<p>The code of slideshow 2! Takes the name and caption of file as input, then with its help it displays the images. The javascript take data as object / array . I am having the problem in passing the image name and caption.</p>
<p>The <strong>original code</strong> of slideshow 2 ! is as under ::</p>
<p>&lt;!DOCTYPE html PUBLIC &#8220;-//W3C//DTD XHTML 1.0 Strict//EN&#8221;</p>
<p>&#8220;http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd&#8221;&gt;</p>
<p>&lt;html xmlns=&#8221;http://www.w3.org/1999/xhtml&#8221;&gt;</p>
<p>&lt;head&gt;</p>
<p>&lt;title&gt;Slideshow 2!&lt;/title&gt;</p>
<p>&lt;meta http-equiv=&#8221;content-type&#8221; content=&#8221;text/html; charset=utf-8&#8243; /&gt;</p>
<p>&lt;meta name=&#8221;author&#8221; content=&#8221;Aeron Glemann (http://www.electricprism.com/aeron/)&#8221; /&gt;</p>
<p>&lt;link rel=&#8221;stylesheet&#8221; href=&#8221;css/slideshow.css&#8221; media=&#8221;screen&#8221; /&gt;</p>
<p>&lt;script type=&#8221;text/javascript&#8221; src=&#8221;js/mootools.js&#8221;&gt;&lt;/script&gt;</p>
<p>&lt;script type=&#8221;text/javascript&#8221; src=&#8221;js/slideshow.js&#8221;&gt;&lt;/script&gt;</p>
<p>&lt;script type=&#8221;text/javascript&#8221;&gt;</p>
<p>//&lt;![CDATA[</p>
<p>window.addEvent('domready', function(){</p>
<p>var data = {</p>
<p>'1.jpg': { caption: 'Volcano Asención in Ometepe, Nicaragua.' },</p>
<p>'2.jpg': { caption: 'A Ceibu tree.' },</p>
<p>'3.jpg': { caption: 'The view from Volcano Maderas.' },</p>
<p>'4.jpg': { caption: 'Beer and ice cream.' }</p>
<p>};</p>
<p>var myShow = new Slideshow('show', data, {controller: true, height: 300, hu: 'images/', thumbnails: true, width: 400});</p>
<p>});</p>
<p>//]]&gt;</p>
<p>&lt;/script&gt;</p>
<p>&lt;/head&gt;</p>
<p>&lt;body&gt;</p>
<p>&lt;div id=&#8221;show&#8221;&gt;</p>
<p>&lt;img src=&#8221;images/1.jpg&#8221; alt=&#8221;Volcano Asención in Ometepe, Nicaragua.&#8221; /&gt;</p>
<p>&lt;/div&gt;</p>
<p>&lt;/body&gt;</p>
<p>&lt;/html&gt;</p>
<p><strong>I have tried to limit the number of  pictures by 20 in the code but I need some help to get a proper solution. </strong></p>
<p>// <span style="color:#800000;">opening the database</span></p>
<p>$connection=mysql_connect(&#8220;localhost&#8221;,&#8217;root&#8217;,&#8221;)or die (&#8220;error occured&#8221;);</p>
<p>mysql_select_db(first_project)or die(&#8220;Could not open the datbase &#8220;);</p>
<p>$q=&#8221;insert into images(user,original,caption) VALUES (&#8216;$user&#8217;,'$a&#8217;,'$caption&#8217;)&#8221;;</p>
<p>mysql_query($q)or die(&#8220;Could not compile the query&#8221;);</p>
<p>$connection=mysql_connect(&#8220;localhost&#8221;,&#8217;root&#8217;,&#8221;)or die (&#8220;error occured&#8221;);</p>
<p>mysql_select_db(first_project)or die(&#8220;Could not open the datbase &#8220;);</p>
<p>$s=&#8221;select original,caption from images where user like &#8216;$user&#8217; &#8220;;</p>
<p>$result=mysql_query($s) or die(&#8220;could not compile&#8221;);</p>
<p>// <span style="color:#800000;">getting the name and caption of picture</span></p>
<p>if(mysql_num_rows($result) &gt; 0)</p>
<p>{</p>
<p>$required1=array();</p>
<p>$required2=array();</p>
<p>while($row = mysql_fetch_row($result))</p>
<p>{</p>
<p>array_push($required1,$row[0]);</p>
<p>array_push($required2,$row[1]);</p>
<p>}</p>
<p>}</p>
<p>&lt;html&gt;</p>
<p>&lt;head&gt; Images &lt;/head&gt;</p>
<p>&lt;body&gt;</p>
<p>&lt;link rel=&#8221;stylesheet&#8221; type=&#8221;text/css&#8221; href=&#8221;css/slideshow.css&#8221; media=&#8221;screen&#8221; /&gt;</p>
<p>&lt;script type=&#8221;text/javascript&#8221; src=&#8221;js/mootools.js&#8221;&gt;&lt;/script&gt;</p>
<p>&lt;script type=&#8221;text/javascript&#8221; src=&#8221;js/slideshow.js&#8221;&gt;&lt;/script&gt;</p>
<p>&lt;script type=&#8221;text/javascript&#8221;&gt;</p>
<p>window.addEvent(&#8216;domready&#8217;, function(){</p>
<p><strong> var data = {</strong></p>
<p><strong> </strong></p>
<p><strong>&#8216;&lt;?php echo $required1[0]?&gt;&#8217;: { caption: &#8216;&lt;?php echo $required2[0] ?&gt;&#8217; },</strong></p>
<p><strong>&#8216;&lt;?php echo $required1[1]?&gt;&#8217;: { caption: &#8216;&lt;?php echo $required2[1] ?&gt;&#8217; },</strong></p>
<p><strong>&#8216;&lt;?php echo $required1[2]?&gt;&#8217;: { caption: &#8216;&lt;?php echo $required2[2] ?&gt;&#8217; },</strong></p>
<p><strong>&#8216;&lt;?php echo $required1[3]?&gt;&#8217;: { caption: &#8216;&lt;?php echo $required2[3] ?&gt;&#8217; },</strong></p>
<p><strong>&#8216;&lt;?php echo $required1[4]?&gt;&#8217;: { caption: &#8216;&lt;?php echo $required2[4] ?&gt;&#8217; },</strong></p>
<p><strong>&#8216;&lt;?php echo $required1[5]?&gt;&#8217;: { caption: &#8216;&lt;?php echo $required2[5] ?&gt;&#8217; },</strong></p>
<p><strong>&#8216;&lt;?php echo $required1[6]?&gt;&#8217;: { caption: &#8216;&lt;?php echo $required2[6] ?&gt;&#8217; },</strong></p>
<p><strong>&#8216;&lt;?php echo $required1[7]?&gt;&#8217;: { caption: &#8216;&lt;?php echo $required2[7] ?&gt;&#8217; },</strong></p>
<p><strong>&#8216;&lt;?php echo $required1[8]?&gt;&#8217;: { caption: &#8216;&lt;?php echo $required2[8] ?&gt;&#8217; },</strong></p>
<p><strong>&#8216;&lt;?php echo $required1[9]?&gt;&#8217;: { caption: &#8216;&lt;?php echo $required2[9] ?&gt;&#8217; },</strong></p>
<p><strong>&#8216;&lt;?php echo $required1[10]?&gt;&#8217;: { caption: &#8216;&lt;?php echo $required2[10] ?&gt;&#8217; },</strong></p>
<p><strong>&#8216;&lt;?php echo $required1[11]?&gt;&#8217;: { caption: &#8216;&lt;?php echo $required2[11] ?&gt;&#8217; },</strong></p>
<p><strong>&#8216;&lt;?php echo $required1[12]?&gt;&#8217;: { caption: &#8216;&lt;?php echo $required2[12] ?&gt;&#8217; },</strong></p>
<p><strong>&#8216;&lt;?php echo $required1[13]?&gt;&#8217;: { caption: &#8216;&lt;?php echo $required2[13] ?&gt;&#8217; },</strong></p>
<p><strong>&#8216;&lt;?php echo $required1[14]?&gt;&#8217;: { caption: &#8216;&lt;?php echo $required2[14] ?&gt;&#8217; },</strong></p>
<p><strong>&#8216;&lt;?php echo $required1[15]?&gt;&#8217;: { caption: &#8216;&lt;?php echo $required2[15] ?&gt;&#8217; },</strong></p>
<p><strong>&#8216;&lt;?php echo $required1[16]?&gt;&#8217;: { caption: &#8216;&lt;?php echo $required2[16] ?&gt;&#8217; },</strong></p>
<p><strong>&#8216;&lt;?php echo $required1[17]?&gt;&#8217;: { caption: &#8216;&lt;?php echo $required2[17] ?&gt;&#8217; },</strong></p>
<p><strong>&#8216;&lt;?php echo $required1[18]?&gt;&#8217;: { caption: &#8216;&lt;?php echo $required2[18] ?&gt;&#8217; },</strong></p>
<p><strong>&#8216;&lt;?php echo $required1[19]?&gt;&#8217;: { caption: &#8216;&lt;?php echo $required2[19] ?&gt;&#8217; }</strong></p>
<p><strong>}; </strong></p>
<p>var myShow = new Slideshow(&#8216;show&#8217;, data, {controller: true, height: 300, hu: &#8216;uploaded_files/&#8217;, thumbnails: false, width: 400});</p>
<p>});</p>
<p>//]]&gt;</p>
<p>&lt;/script&gt;</p>
<p>&lt;/head&gt;</p>
<p>&lt;body&gt;</p>
<p>&lt;div id=&#8221;show&#8221;&gt;</p>
<p>&lt;img src=&#8221;uploaded_files/1.jpg&#8221; alt=&#8221;Volcano Asención in Ometepe, Nicaragua.&#8221; /&gt;</p>
<p>&lt;/div&gt;</p>
<p>&lt;/body&gt;</p>
<p>&lt;/html&gt;</p>
<p>I was not able to pass the values in  <strong><span style="color:#800000;">var data</span>. </strong>I tried to push the values in the array but it didn’t work. Any suggestion are welcomed <img src='http://s0.wp.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' />  .</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/priyankamittal.wordpress.com/142/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/priyankamittal.wordpress.com/142/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/priyankamittal.wordpress.com/142/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/priyankamittal.wordpress.com/142/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/priyankamittal.wordpress.com/142/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/priyankamittal.wordpress.com/142/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/priyankamittal.wordpress.com/142/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/priyankamittal.wordpress.com/142/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/priyankamittal.wordpress.com/142/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/priyankamittal.wordpress.com/142/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/priyankamittal.wordpress.com/142/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/priyankamittal.wordpress.com/142/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/priyankamittal.wordpress.com/142/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/priyankamittal.wordpress.com/142/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=priyankamittal.wordpress.com&amp;blog=7954890&amp;post=142&amp;subd=priyankamittal&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://priyankamittal.wordpress.com/2009/06/28/some-help-required/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/e9804fc290303866d1aabda08ae33625?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">priyanka</media:title>
		</media:content>
	</item>
		<item>
		<title>First Project</title>
		<link>http://priyankamittal.wordpress.com/2009/06/16/first-project/</link>
		<comments>http://priyankamittal.wordpress.com/2009/06/16/first-project/#comments</comments>
		<pubDate>Tue, 16 Jun 2009 18:47:53 +0000</pubDate>
		<dc:creator>Priyanka Mittal</dc:creator>
				<category><![CDATA[Training]]></category>
		<category><![CDATA[details of signup form]]></category>
		<category><![CDATA[signup page]]></category>
		<category><![CDATA[uploading files]]></category>

		<guid isPermaLink="false">http://priyankamittal.wordpress.com/?p=116</guid>
		<description><![CDATA[The first project aims at building a small website using PHP and Mysql that shows a user registration page. Once user is logged in, the person can upload photos and can also view the photos the person uploaded earlier. While implementing this problem, we will have four different pages that will be displayed to the user. [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=priyankamittal.wordpress.com&amp;blog=7954890&amp;post=116&amp;subd=priyankamittal&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>The first project aims at building a small website using PHP and Mysql that shows a user registration page. Once user is logged in, the person can upload photos and can also view the photos the person uploaded earlier.</p>
<p>While implementing this problem, we will have four different pages that will be displayed to the user.</p>
<p>Home page or sign in page</p>
<p>Option available in it ::</p>
<ul>
<li>User      name and password</li>
<li>forgot      password</li>
<li>sign      up</li>
</ul>
<p>Sign up page/form:</p>
<ul>
<li>Name</li>
<li>Desired      Login Name:   (check for uniqueness)</li>
<li>Choose      a password:</li>
<li>Re-enter      password:</li>
<li>email      address</li>
<li>send      confirmation.</li>
</ul>
<p>Upload page:</p>
<p>For uploading new pictures in the account , options available :</p>
<ul>
<li>Upload new pictures:</li>
<li>Display all pictures</li>
<li>Log out</li>
</ul>
<p>Display pictures</p>
<ul>
<li> display the pictures</li>
</ul>
<p>Details related to coding the project:</p>
<p>The php script will contain the form for taking the username and password.</p>
<p>It will then call the checking function to check the correctness of username and password.</p>
<p>The function will first make a search in the database for the required username and then if the user exists. The user password will be checked.</p>
<p>If any of this condition is false, an error message will be displayed.</p>
<p>If we get a new user, the user will first signup, and then access the account. By clicking on the sign up option, a form will be displayed.</p>
<p>If user forgets the password then, a mail will be sent to the users email id, it will provide the password to the user.</p>
<p>Details of the sign up page/ form:</p>
<p>The fields in the form will be:</p>
<ul>
<li>Name :</li>
<li>Desired      Login Name:   (check for uniqueness)</li>
<li>Choose      a password:</li>
<li>Re-enter      password:</li>
<li>email      address</li>
<li>Send      confirmation</li>
</ul>
<p>When user fills the form and submits it, the details of the form will be submitted to the php script. The script will check for uniqueness of the username (we will use it as the primary key in our database), we will assign only one account for a email id so we will make the search again. If the two fields are unique then we will make the entry in the database.</p>
<p>Once the user has logged in, the user will be able to upload new files and see previous once.</p>
<p>Using html we make a form which takes a file as input, the form contain ENCTYPE argument in it. Once the file has been uploaded, we can use the global variable $_files to get the details of that file.</p>
<p>Details like:</p>
<ul>
<li>Name</li>
<li>Size</li>
<li>Type</li>
</ul>
<p>Once we get the details we can store them in database.</p>
<p>The details stored in database will be:</p>
<p>Username, file name, size and type of file.</p>
<p>If user tries to upload a file with same name as that of existing file , then it will show a error.</p>
<p>The user will be given option to delete the files.</p>
<p>When user uploads the file, we display all the pictures using slideshow.</p>
<p>The slideshow page will be a html page with java script embedded in it.</p>
<p>When user clicks on the sign out option, the temporary variable storing  the username and password will be reset, thus user logouts.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/priyankamittal.wordpress.com/116/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/priyankamittal.wordpress.com/116/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/priyankamittal.wordpress.com/116/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/priyankamittal.wordpress.com/116/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/priyankamittal.wordpress.com/116/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/priyankamittal.wordpress.com/116/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/priyankamittal.wordpress.com/116/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/priyankamittal.wordpress.com/116/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/priyankamittal.wordpress.com/116/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/priyankamittal.wordpress.com/116/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/priyankamittal.wordpress.com/116/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/priyankamittal.wordpress.com/116/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/priyankamittal.wordpress.com/116/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/priyankamittal.wordpress.com/116/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=priyankamittal.wordpress.com&amp;blog=7954890&amp;post=116&amp;subd=priyankamittal&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://priyankamittal.wordpress.com/2009/06/16/first-project/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/e9804fc290303866d1aabda08ae33625?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">priyanka</media:title>
		</media:content>
	</item>
		<item>
		<title>1st tutorial :-)</title>
		<link>http://priyankamittal.wordpress.com/2009/06/06/96/</link>
		<comments>http://priyankamittal.wordpress.com/2009/06/06/96/#comments</comments>
		<pubDate>Sat, 06 Jun 2009 13:43:16 +0000</pubDate>
		<dc:creator>Priyanka Mittal</dc:creator>
				<category><![CDATA[Training]]></category>
		<category><![CDATA[data types in php]]></category>
		<category><![CDATA[echo + php]]></category>
		<category><![CDATA[variables + PHP]]></category>

		<guid isPermaLink="false">http://priyankamittal.wordpress.com/?p=96</guid>
		<description><![CDATA[Getting started with PHP language . J .It is similar to C language. So it is easy to learn for those who have knowledge of C or C++ Syntax of PHP Embedded in html: &#60;html&#62; &#60;head&#62; &#60;/head&#62; &#60;body&#62; &#60;?php . . php code . ?&#62; &#60;/body&#62; &#60;/html&#62; Commands :: For Displaying Contents : Commands used [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=priyankamittal.wordpress.com&amp;blog=7954890&amp;post=96&amp;subd=priyankamittal&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Getting started with PHP language . J .It is similar to C language. So it is easy to learn for those who have knowledge of C or C++ <img src='http://s0.wp.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':-D' class='wp-smiley' /> </p>
<p>Syntax of PHP Embedded in html:</p>
<p><span style="color:#993300;">&lt;html&gt;<br />
&lt;head&gt; &lt;/head&gt;<br />
&lt;body&gt;</span></p>
<p><span style="color:#993300;">&lt;?php<br />
.</span></p>
<p><span style="color:#993300;">. php code</span></p>
<p><span style="color:#993300;">.<br />
?&gt;</span></p>
<p><span style="color:#993300;">&lt;/body&gt;<br />
&lt;/html&gt;</span></p>
<p>Commands :: <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p>For Displaying Contents :</p>
<p>Commands used for displaying contents are echo and print.</p>
<p>Syntax for echo :</p>
<p>echo ‘contents to be displayed’;</p>
<p>example:</p>
<p><span style="color:#993300;">&lt;?php</span></p>
<p><span style="color:#993300;">echo ‘HI THIS IS ECHO FUNCTION’;</span></p>
<p><span style="color:#993300;">?&gt;</span></p>
<p><span style="color:#993300;">Syntax for print:</span></p>
<p><span style="color:#993300;">print ”CONTENTS”;</span></p>
<p><span style="color:#993300;">example:</span></p>
<p><span style="color:#993300;">&lt;?php</span></p>
<p><span style="color:#993300;">print ”THIS IS PRINT FUNCTION”;</span></p>
<p><span style="color:#993300;">?&gt;</span></p>
<p>NOTE : Every command in PHP terminates with semicolon ( ; ).</p>
<p>Adding Comments To PHP File: <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p>PHP supports both single-line and multi-line comment blocks:</p>
<p>Single line comment:</p>
<p>Syntax :</p>
<p>// this is a single-line comment</p>
<p>Multi line comment:</p>
<p>Syntax :</p>
<p>/* and this is a<br />
multi-line<br />
comment */</p>
<p>Variables in PHP:</p>
<p>PHP supports a number of different variable types: integers, floating point numbers, strings and arrays.</p>
<p>In PHP, a variable name is preceded by a dollar ($) symbol and must begin with a letter or underscore, optionally followed by more letters, numbers and/or underscores.</p>
<p>For example</p>
<p>$variable, $sum and $PRODUCT are all valid PHP variable names, while $1NEW and $4@hi are invalid variable names.</p>
<p><span style="color:#993300;">&lt;html&gt;<br />
&lt;head&gt;&lt;/head&gt;<br />
&lt;body&gt;</span></p>
<p><span style="color:#993300;">Subject Details &lt;br&gt;</span></p>
<p><span style="color:#993300;">&lt;?php<br />
// define variables<br />
$duration = 6;<br />
$name = &#8216;PHP&#8217;;<br />
$credits = 4;</span></p>
<p><span style="color:#993300;">// print output<br />
echo &#8220;Name of subject  : $name &lt;br&gt;Duration of course  :    $duration&lt;br&gt; Credits allotted  : $credits      &#8220;;<br />
?&gt;</span></p>
<p><span style="color:#993300;">&lt;/body&gt;<br />
&lt;/html&gt;</span></p>
<p>Data types used :</p>
<p>Boolean: The simplest variable type in PHP, a Boolean variable, simply specifies a true or false value.</p>
<p><span style="color:#993300;">&lt;?php</span></p>
<p><span style="color:#993300;">$access = true;</span></p>
<p><span style="color:#993300;">?&gt;</span></p>
<p>Integer: An integer is used to store whole numbers like 75, -95, 2000 or 1.</p>
<p><span style="color:#993300;">&lt;?php</span></p>
<p><span style="color:#993300;">$marks = 99;</span></p>
<p><span style="color:#993300;">?&gt;</span></p>
<p>Floating-point: A floating-point number is typically a fractional number such as 101.25 or 3.141592653589. Floating point numbers may be specified using either decimal or scientific notation.</p>
<p><span style="color:#993300;">&lt;?php</span></p>
<p><span style="color:#993300;">$rate = 56.89;</span></p>
<p><span style="color:#993300;">?&gt;</span></p>
<p>String: A string is a sequence of characters, like &#8220;Delhi&#8221; or &#8220;cute_girl&#8221;. String values may be enclosed in either double quotes (&#8220;&#8221;) or single quotes(&#8221;).</p>
<p>Example:</p>
<p><span style="color:#993300;">&lt;?php</span></p>
<p><span style="color:#993300;">$identity = &#8216;Sachin’;<br />
$car = &#8216;BMW&#8217;;</span></p>
<p><span style="color:#993300;">// this would contain the string &#8220;Sachin owns a BMW&#8221;<br />
$sentence = &#8220;$identity owns a $car&#8221;;<br />
echo $sentence;</span></p>
<p><span style="color:#993300;">?&gt;</span></p>
<p>Operations on Variables :</p>
<p>Addition : adding two numbers</p>
<p>Example :</p>
<p><span style="color:#993300;">$a = 10;</span></p>
<p><span style="color:#993300;">$b = 14;</span></p>
<p><span style="color:#993300;">$sum=$a + $b;</span></p>
<p><span style="color:#993300;">$a = 5+ $a;</span></p>
<p><span style="color:#993300;">Or</span></p>
<p><span style="color:#993300;">$a +=5;</span></p>
<p>Adding two strings: two strings are added with help of dot (.) symbol;</p>
<p><span style="color:#993300;">$a=’hello’;</span></p>
<p><span style="color:#993300;">$b=’world’;</span></p>
<p><span style="color:#993300;">$c=$a.” ” .  $b;</span></p>
<p><span style="color:#993300;">// $c = ‘hello world’;</span></p>
<p>Multiplication of variables:</p>
<p>Example:</p>
<p><span style="color:#993300;">$a = 10;</span></p>
<p><span style="color:#993300;">$b = 14;</span></p>
<p><span style="color:#993300;">$multi=$a * $b;</span></p>
<p><span style="color:#993300;">$a = 5 * $a;</span></p>
<p><span style="color:#993300;">Or</span></p>
<p><span style="color:#993300;">$a *=5;</span></p>
<p>Subtraction of variables :</p>
<p><span style="color:#993300;">$sub=$a &#8211; $b;</span></p>
<p><span style="color:#993300;">$a &#8211; = 5</span>;</p>
<p>Division:</p>
<p>Example:</p>
<p><span style="color:#993300;">$div=$a / $b;</span></p>
<p><span style="color:#993300;">$a / =5;</span></p>
<p>Reference : <img src='http://s0.wp.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':-D' class='wp-smiley' /> </p>
<p>PHP 101: PHP For the Absolute Beginner ::   http://devzone.zend.com/node/view/id/625</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/priyankamittal.wordpress.com/96/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/priyankamittal.wordpress.com/96/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/priyankamittal.wordpress.com/96/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/priyankamittal.wordpress.com/96/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/priyankamittal.wordpress.com/96/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/priyankamittal.wordpress.com/96/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/priyankamittal.wordpress.com/96/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/priyankamittal.wordpress.com/96/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/priyankamittal.wordpress.com/96/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/priyankamittal.wordpress.com/96/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/priyankamittal.wordpress.com/96/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/priyankamittal.wordpress.com/96/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/priyankamittal.wordpress.com/96/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/priyankamittal.wordpress.com/96/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=priyankamittal.wordpress.com&amp;blog=7954890&amp;post=96&amp;subd=priyankamittal&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://priyankamittal.wordpress.com/2009/06/06/96/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/e9804fc290303866d1aabda08ae33625?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">priyanka</media:title>
		</media:content>
	</item>
		<item>
		<title>Starting with PHP</title>
		<link>http://priyankamittal.wordpress.com/2009/06/05/starting-with-php/</link>
		<comments>http://priyankamittal.wordpress.com/2009/06/05/starting-with-php/#comments</comments>
		<pubDate>Fri, 05 Jun 2009 12:15:18 +0000</pubDate>
		<dc:creator>Priyanka Mittal</dc:creator>
				<category><![CDATA[Training]]></category>
		<category><![CDATA[Executing PHP file]]></category>
		<category><![CDATA[full form of PHP]]></category>
		<category><![CDATA[requirements for PHP]]></category>
		<category><![CDATA[Syntax for PHP]]></category>

		<guid isPermaLink="false">http://priyankamittal.wordpress.com/?p=82</guid>
		<description><![CDATA[As a part of training  I was asked to start studying PHP, I thought of exploring some things about it. Its full form: In early versions, PHP used to stand for Personal Home Page. Later it was renamed to &#8216;PHP: Hypertext Preprocessor&#8217;. Why we use PHP? It is easy to use and learn. Effective codes [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=priyankamittal.wordpress.com&amp;blog=7954890&amp;post=82&amp;subd=priyankamittal&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>As a part of training  I was asked to start studying PHP, I thought of exploring some things about it. <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p>Its full form: In early versions, PHP used to stand for Personal Home Page. Later it was renamed to &#8216;PHP: Hypertext Preprocessor&#8217;.</p>
<p><strong>Why we use PHP?</strong></p>
<p>It is easy to use and learn. <img src='http://s0.wp.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':-D' class='wp-smiley' /> </p>
<p>Effective codes can be created using it. It has excellent performance even on high loads.</p>
<p><strong>Syntax for PHP script::</strong></p>
<p><span style="color:#993300;">&lt;?php</span></p>
<p><span style="color:#993300;">.</span></p>
<p><span style="color:#993300;">.</span></p>
<p><span style="color:#993300;">php code</span></p>
<p><span style="color:#993300;">.</span></p>
<p><span style="color:#993300;">.</span></p>
<p><span style="color:#993300;">?&gt;</span></p>
<p><strong>Environment:</strong></p>
<p>For using PHP language, we need to embed the PHP script in html format of webpage, similar to JavaScript.</p>
<p>For running the webpage with PHP script , we need to host it on server. A good option is to down load software named :: XAMPP</p>
<p>from:: <a href="http://www.apachefriends.org/en/xampp-windows.html">http://www.apachefriends.org/en/xampp-windows.html</a></p>
<p>It helps in creating a local host, thus we can run the required php file.</p>
<p>The XAMPP s/w is available for various Operating Systems, like Linux,  windows, Solaris and for Mac OS X .</p>
<p>After downloading the s/w, I started the setup. It was very easy to install the s/w on system. XAMPP creates a control panel which is used to start and stop modules (apache, mysql, fizezilla, mercury). Then I tested the control panel by starting and stopping the modules.</p>
<p>To test the running of PHP on local host, v need to make a PHP file:</p>
<p>A Simple PHP file : saved it as message.php</p>
<p><span style="color:#993300;">&lt;html&gt;<br />
&lt;head&gt;&lt;/head&gt;<br />
&lt;body&gt;</span></p>
<p><span style="color:#993300;">This is HTML BODY &lt;br/&gt;</span></p>
<p><span style="color:#993300;">&lt;?php<br />
// print output<br />
echo &#8216;&lt;br&gt;Now in PHP script &#8216;;<br />
?&gt;</span></p>
<p><span style="color:#993300;">&lt;/body&gt;<br />
&lt;/html&gt;</span></p>
<p>For testing the file, I started the apache and mysql modules of XAMPP control panel. After that opened <a href="http://localhost/">http://localhost</a> in internet explorer.</p>
<p>It displays the welcome page, after that the address in address bar changes to</p>
<p><a href="http://localhost/xampp/">http://localhost/xampp/</a> .</p>
<p>I tried opening the file after saving it in directory (in XAMPP folder) where I had installed XAMPP. Address I mentioned was <a href="http://localhost/xampp/message.php">http://localhost/xampp/message.php</a> , but it gave error. It said that file doesn’t exist. <img src='http://s1.wp.com/wp-includes/images/smilies/icon_confused.gif' alt=':-?' class='wp-smiley' /> </p>
<p>Then i came to know that XAMPP runs those files which are stored in folder named ‘htdocs’. Folder &#8216;htdocs&#8217; is present in the XAMPP folder which is created during installation of s/w.</p>
<p>I stored my file in ‘htdocs’ and tried using  <a href="http://localhost/message.php">http://localhost/message.php</a> in address bar . The file was then executed, and output was obtained. <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p>If we create folders in &#8216;htdocs&#8217; then we have to mention the folder name followed by the file name in the address bar.</p>
<p>Example :  we have created a folder named &#8216;try&#8217; in &#8216;htdocs&#8217; and saved file &#8216;first.php&#8217; in it . To exacute the file we have to mention :</p>
<p><a href="http://localhost/message.php">http://localhost/try/first.php</a></p>
<p>Then our file will be executed. <img src='http://s0.wp.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':-D' class='wp-smiley' /> </p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/priyankamittal.wordpress.com/82/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/priyankamittal.wordpress.com/82/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/priyankamittal.wordpress.com/82/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/priyankamittal.wordpress.com/82/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/priyankamittal.wordpress.com/82/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/priyankamittal.wordpress.com/82/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/priyankamittal.wordpress.com/82/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/priyankamittal.wordpress.com/82/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/priyankamittal.wordpress.com/82/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/priyankamittal.wordpress.com/82/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/priyankamittal.wordpress.com/82/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/priyankamittal.wordpress.com/82/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/priyankamittal.wordpress.com/82/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/priyankamittal.wordpress.com/82/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=priyankamittal.wordpress.com&amp;blog=7954890&amp;post=82&amp;subd=priyankamittal&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://priyankamittal.wordpress.com/2009/06/05/starting-with-php/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/e9804fc290303866d1aabda08ae33625?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">priyanka</media:title>
		</media:content>
	</item>
		<item>
		<title>PHP and ASP.NET</title>
		<link>http://priyankamittal.wordpress.com/2009/06/04/php-and-asp-net/</link>
		<comments>http://priyankamittal.wordpress.com/2009/06/04/php-and-asp-net/#comments</comments>
		<pubDate>Thu, 04 Jun 2009 16:16:10 +0000</pubDate>
		<dc:creator>Priyanka Mittal</dc:creator>
				<category><![CDATA[Training]]></category>
		<category><![CDATA[ASP.NET]]></category>
		<category><![CDATA[difference of php and asp.net]]></category>
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://priyankamittal.wordpress.com/?p=68</guid>
		<description><![CDATA[PHP and ASP.NET are two most widely used languages for development of web applications. After second year students are required to do training (learn some language or industrial training). The most popular pick in students is ASP.NET because of time constrain. They learn DOT NET in 1 month  , it is easy to learn, as [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=priyankamittal.wordpress.com&amp;blog=7954890&amp;post=68&amp;subd=priyankamittal&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>PHP and ASP.NET are two most widely used languages for development of web applications. After second year students are required to do training (learn some language or industrial training). The most popular pick in students is ASP.NET because of time constrain. They learn DOT NET in 1 month  , it is easy to learn, as people say ,’it only requires drag and drop , and code is generated for it  by the software ’. But I started with PHP  in my training first and found that its easy to understand, ones we have the algorithm to implement a problem , it can be coded easily.</p>
<p><em><span style="text-decoration:underline;">Now dealing with difference of PHP and ASP.NET </span></em></p>
<p><em><span style="text-decoration:underline;"> </span></em></p>
<p><em><span style="text-decoration:underline;"> </span></em></p>
<table style="height:441px;" border="1" cellspacing="0" cellpadding="0" width="453">
<tbody>
<tr>
<td style="text-align:justify;" width="295" valign="top">
<h3 style="text-align:center;"><span style="color:#800000;"><em>PHP</em></span></h3>
</td>
<td width="336" valign="top">
<h3 style="text-align:center;"><span style="color:#800000;"><em>ASP.NET</em></span></h3>
</td>
</tr>
<tr>
<td width="295" valign="top">
<ul>
<li>PHP is a   language. It consists of platform independent engine that computes PHP   scripts.</li>
<li>It provides web   application functionality such as database connectivity</li>
<li>It is not built   on OOP paradigm; it supports partial encapsulation and partial polymorphism.</li>
<li>In PHP, the   script is embedded in HTML.</li>
<li>When a page   written in HTML and inline PHP script is requested, it is compiled to binary   format called Zend Opcodes.</li>
<li>Once the page   is compiled, the  opcodes are run by   Zed Engine and HTML is generated for the page which is sent to the client</li>
</ul>
</td>
<td width="336" valign="top">
<ul>
<li>It is not a language.</li>
<li>It is a technology and is small part of the .net framework.</li>
<li>It is built entirely on OOP paradigm.</li>
<li>The requested page written using ASP.NET is first converted into an intermediate language called MSIL (Microsoft Intermediate Language).</li>
<li>The CLR then converts this MSIL to machine code.</li>
<li>Conversion to machine code only takes place once for each page request (unless code has been modified).</li>
</ul>
<ul>
<li> All subsequent requests use the already generated machine code.</li>
</ul>
</td>
</tr>
</tbody>
</table>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/priyankamittal.wordpress.com/68/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/priyankamittal.wordpress.com/68/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/priyankamittal.wordpress.com/68/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/priyankamittal.wordpress.com/68/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/priyankamittal.wordpress.com/68/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/priyankamittal.wordpress.com/68/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/priyankamittal.wordpress.com/68/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/priyankamittal.wordpress.com/68/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/priyankamittal.wordpress.com/68/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/priyankamittal.wordpress.com/68/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/priyankamittal.wordpress.com/68/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/priyankamittal.wordpress.com/68/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/priyankamittal.wordpress.com/68/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/priyankamittal.wordpress.com/68/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=priyankamittal.wordpress.com&amp;blog=7954890&amp;post=68&amp;subd=priyankamittal&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://priyankamittal.wordpress.com/2009/06/04/php-and-asp-net/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/e9804fc290303866d1aabda08ae33625?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">priyanka</media:title>
		</media:content>
	</item>
		<item>
		<title>Open source software</title>
		<link>http://priyankamittal.wordpress.com/2009/05/31/open-source-software/</link>
		<comments>http://priyankamittal.wordpress.com/2009/05/31/open-source-software/#comments</comments>
		<pubDate>Sun, 31 May 2009 19:35:35 +0000</pubDate>
		<dc:creator>Priyanka Mittal</dc:creator>
				<category><![CDATA[Training]]></category>
		<category><![CDATA[bazaar model]]></category>
		<category><![CDATA[funding oss]]></category>
		<category><![CDATA[history of oss]]></category>
		<category><![CDATA[open source software]]></category>
		<category><![CDATA[philosophy of oss]]></category>

		<guid isPermaLink="false">http://priyankamittal.wordpress.com/?p=57</guid>
		<description><![CDATA[Open source software ( OSS ) is a programming philosophy where by all aspects of a program are open for view , that is :  program and certain other rights  which are normally reserved for copyright holders are provided under a software license that meets the Open Source Definition or that is in the public [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=priyankamittal.wordpress.com&amp;blog=7954890&amp;post=57&amp;subd=priyankamittal&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p style="text-align:justify;"><em><strong>Open source software ( OSS )</strong></em> is a programming philosophy where by all aspects of a program are open for view , that is :  program and certain other rights  which are normally reserved for copyright holders are provided under a software license that meets the Open Source Definition or that is in the public domain.</p>
<p style="text-align:justify;">The term (OSS) usually refers to a source code of the program , but can also refer to files created by program. The OSS allows the users to use, change, and improve the software, and to redistribute it in modified or unmodified form.</p>
<p style="text-align:justify;">Open source software generally allows anyone to create modifications of the software, port it to new operating systems and processor architectures, share it with others or market it.</p>
<h3 style="text-align:justify;"><span style="text-decoration:underline;">History related to OSS</span></h3>
<p style="text-align:justify;">In 1998, a group of individuals advocated that the term ‘Free Software’ should be replaced by open source software (OSS) which would be less ambiguous and more comfortable for the corporate world.</p>
<p style="text-align:justify;">The Open Source Definition, presents an open source philosophy, and defines the terms of usage, modification and redistribution of open source software. Software licenses grant rights to users which would otherwise be reserved by copyright law to the copyright holder. The Open source distribution makes the source codes of a product publicly accessible; the open source licenses allow the authors to fine tune such access.</p>
<h3 style="text-align:justify;"><span style="text-decoration:underline;"><strong>Philosophy</strong></span></h3>
<p style="text-align:justify;">It is suggested that the model used for development OSS is the Bazaar model. Even though the roles are not clearly defined in this model, the software developed using the Bazaar model should exhibit the following patterns:</p>
<ul style="text-align:justify;">
<li> <em>Users should be treated as co-developers</em></li>
</ul>
<p style="padding-left:60px;text-align:justify;">All the users are treated as co-developers, they should have access to the source code of the software. It permits the users to submit additions to the software, code fixes for the software, bug reports, documentation etc. The rate at which the software evolves is high. Each user&#8217;s machine provides an additional testing environment. This new testing environment offers that ability to find and fix a new bug.</p>
<ul style="text-align:justify;">
<li> Early releases</li>
</ul>
<p style="padding-left:60px;text-align:justify;">The first version of the software should be released as early as possible so as to increase one&#8217;s chances of finding co-developers early.</p>
<ul style="text-align:justify;">
<li> Frequent integration</li>
</ul>
<p style="padding-left:60px;text-align:justify;">New code should be integrated as often as possible so as to avoid the overhead of fixing a large number of bugs at the end of the project life cycle (example: iterative enhancement model).</p>
<ul style="text-align:justify;">
<li> Several versions</li>
</ul>
<p style="padding-left:60px;text-align:justify;">It suggests that there should at least be two versions of the software. There should be a buggier version with more features and a more stable version with fewer features. The buggier version (or the development version) has latest features, but has some bugs in it. It is for the users who are willing to accept the risk of using code that is not yet thoroughly tested.</p>
<ul style="text-align:justify;">
<li> High modularization</li>
</ul>
<p style="padding-left:60px;text-align:justify;">The general structure of the software should be modular allowing for parallel development. This increases the speed of development of s/w.</p>
<ul style="text-align:justify;">
<li> Dynamic decision making structure</li>
</ul>
<p style="padding-left:60px;text-align:justify;">There is a need for a decision making structure, whether formal or informal, that makes strategic decisions depending on changing user requirements and other factors.</p>
<h3 style="text-align:justify;"><span style="text-decoration:underline;">Funding</span></h3>
<p style="text-align:justify;">It might appear that, as the program code is available to all users, how does an organization or company get funds for creating software?</p>
<p style="text-align:justify;">It’s a fact that OSS is given away for free, but a number of alternate models for funding its development have emerged. In general the Independent developers and companies make benefit from consultancy fees or by charging for services related to the end use of the software, i.e. training. Several free OSS packages may have &#8216;professional&#8217; versions which have enhanced capabilities and are sold commercially. Many commercial open source applications are developed and distributed by companies as a combination of both open and closed source components. In this case, the company benefits from the availability of OSS, and thus in turn may end up funding OSS maintenance and upgrades when it benefits their application as a whole.</p>
<h3 style="text-align:justify;">Reference ::</h3>
<p style="text-align:justify;">Open source software ::  http://en.wikipedia.org/wiki/Open_source_software</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/priyankamittal.wordpress.com/57/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/priyankamittal.wordpress.com/57/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/priyankamittal.wordpress.com/57/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/priyankamittal.wordpress.com/57/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/priyankamittal.wordpress.com/57/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/priyankamittal.wordpress.com/57/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/priyankamittal.wordpress.com/57/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/priyankamittal.wordpress.com/57/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/priyankamittal.wordpress.com/57/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/priyankamittal.wordpress.com/57/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/priyankamittal.wordpress.com/57/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/priyankamittal.wordpress.com/57/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/priyankamittal.wordpress.com/57/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/priyankamittal.wordpress.com/57/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=priyankamittal.wordpress.com&amp;blog=7954890&amp;post=57&amp;subd=priyankamittal&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://priyankamittal.wordpress.com/2009/05/31/open-source-software/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/e9804fc290303866d1aabda08ae33625?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">priyanka</media:title>
		</media:content>
	</item>
		<item>
		<title>Alpha testing and Beta testing..</title>
		<link>http://priyankamittal.wordpress.com/2009/05/30/alpha-testing-and-beta-testing/</link>
		<comments>http://priyankamittal.wordpress.com/2009/05/30/alpha-testing-and-beta-testing/#comments</comments>
		<pubDate>Sat, 30 May 2009 11:36:43 +0000</pubDate>
		<dc:creator>Priyanka Mittal</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[alpha testing]]></category>
		<category><![CDATA[beta testing]]></category>

		<guid isPermaLink="false">http://priyankamittal.wordpress.com/?p=48</guid>
		<description><![CDATA[H mm.. after reading software engineering, i came to know about what is the beta version of the software ,with help of  alpha and beta testing . Beta testing is done at users site , in real environment .. where as  alpha testing is done at developers site and is done in controlled environment&#8230; In [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=priyankamittal.wordpress.com&amp;blog=7954890&amp;post=48&amp;subd=priyankamittal&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>H mm.. after reading software engineering, i came to know about what is the beta version of the software ,with help of  alpha and beta testing . Beta testing is done at users site , in real environment ..</p>
<p>where as  alpha testing is done at developers site and is done in controlled environment&#8230;</p>
<p>In beta testing it is expected that if a failure occurs , or if there is some problem , the user will report it to the developer , and help in updating the s/w.</p>
<p>It is prefered by the developers as many potential customers may send there reviews. Best part is that the reputation of the company is not affected&#8230; <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' />  <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p>Example :: beta version of firefox</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/priyankamittal.wordpress.com/48/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/priyankamittal.wordpress.com/48/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/priyankamittal.wordpress.com/48/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/priyankamittal.wordpress.com/48/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/priyankamittal.wordpress.com/48/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/priyankamittal.wordpress.com/48/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/priyankamittal.wordpress.com/48/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/priyankamittal.wordpress.com/48/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/priyankamittal.wordpress.com/48/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/priyankamittal.wordpress.com/48/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/priyankamittal.wordpress.com/48/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/priyankamittal.wordpress.com/48/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/priyankamittal.wordpress.com/48/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/priyankamittal.wordpress.com/48/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=priyankamittal.wordpress.com&amp;blog=7954890&amp;post=48&amp;subd=priyankamittal&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://priyankamittal.wordpress.com/2009/05/30/alpha-testing-and-beta-testing/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/e9804fc290303866d1aabda08ae33625?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">priyanka</media:title>
		</media:content>
	</item>
		<item>
		<title>Getting started with Blog</title>
		<link>http://priyankamittal.wordpress.com/2009/05/30/getting-started-with-blog/</link>
		<comments>http://priyankamittal.wordpress.com/2009/05/30/getting-started-with-blog/#comments</comments>
		<pubDate>Sat, 30 May 2009 10:41:22 +0000</pubDate>
		<dc:creator>Priyanka Mittal</dc:creator>
				<category><![CDATA[Training]]></category>
		<category><![CDATA[blog]]></category>
		<category><![CDATA[widget]]></category>

		<guid isPermaLink="false">http://priyankamittal.wordpress.com/?p=36</guid>
		<description><![CDATA[Today is my third holiday&#8230; or u can say &#8230; my  1st day of training. I started with getting details about : what is blog and its need . so now i know that a Blog :: it is a website maintained by a single user with regular updates from the user. It helps in [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=priyankamittal.wordpress.com&amp;blog=7954890&amp;post=36&amp;subd=priyankamittal&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Today is my third holiday&#8230; or u can say &#8230; my  1st day of training. <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p>I started with getting details about : what is blog and its need .</p>
<p>so now i know that a Blog :: it is a website maintained by a single user with regular updates from the user. It helps in maintaining a online diary (which others can read and leave a comment). (there are many diff. type of blogs depending on content and data delivered )</p>
<p>It can be  a text document or audio or video file.</p>
<p>I started with creating my account with www.wordpress.com , and than obtained  a unique domain from there.</p>
<p>Than the first thing was to search examples and videos.</p>
<p>With help of videos available in help , i learned to make static pages , to make new categories , posts and about widgets.</p>
<p>Then i created 2-3 pages&#8230; but was not able to add a caterogy to them , on searching for solution , i came to know the diff. in posts and pages in wordpress.</p>
<p>Pages are not viewed according to the date of creation  , where as posts are displayed according  to date of creation.</p>
<p>so to categories my updates i had  to see what posts are ! how to use&#8230; <img src='http://s1.wp.com/wp-includes/images/smilies/icon_confused.gif' alt=':-?' class='wp-smiley' /> </p>
<p>Posts were easy to create .. add pre defined animation .. image or video&#8230;</p>
<p>After that i personalized my blog&#8230; it can be done by selecting appropriate theme ( according to your wish) and then added some  widgets&#8230;</p>
<p>The tag cloud and category cloud were the coolest one&#8217;s &#8230; <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p>After all the searching and experimenting ,  the final result is the  post which you are reading. <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/priyankamittal.wordpress.com/36/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/priyankamittal.wordpress.com/36/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/priyankamittal.wordpress.com/36/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/priyankamittal.wordpress.com/36/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/priyankamittal.wordpress.com/36/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/priyankamittal.wordpress.com/36/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/priyankamittal.wordpress.com/36/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/priyankamittal.wordpress.com/36/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/priyankamittal.wordpress.com/36/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/priyankamittal.wordpress.com/36/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/priyankamittal.wordpress.com/36/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/priyankamittal.wordpress.com/36/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/priyankamittal.wordpress.com/36/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/priyankamittal.wordpress.com/36/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=priyankamittal.wordpress.com&amp;blog=7954890&amp;post=36&amp;subd=priyankamittal&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://priyankamittal.wordpress.com/2009/05/30/getting-started-with-blog/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/e9804fc290303866d1aabda08ae33625?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">priyanka</media:title>
		</media:content>
	</item>
		<item>
		<title>Welcome</title>
		<link>http://priyankamittal.wordpress.com/2009/05/30/welcome/</link>
		<comments>http://priyankamittal.wordpress.com/2009/05/30/welcome/#comments</comments>
		<pubDate>Sat, 30 May 2009 09:53:05 +0000</pubDate>
		<dc:creator>Priyanka Mittal</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://priyankamittal.wordpress.com/?p=24</guid>
		<description><![CDATA[This is my first Blog . It contains content related to things i have managed to do till day &#8230;. Also contains the things which i opt doing &#8230; my choice.. my wish &#8230;<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=priyankamittal.wordpress.com&amp;blog=7954890&amp;post=24&amp;subd=priyankamittal&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>This is my first Blog . <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p>It contains content related to things i have managed to do till day &#8230;.</p>
<p>Also contains the things which i opt doing &#8230; my choice.. my wish &#8230; <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/priyankamittal.wordpress.com/24/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/priyankamittal.wordpress.com/24/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/priyankamittal.wordpress.com/24/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/priyankamittal.wordpress.com/24/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/priyankamittal.wordpress.com/24/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/priyankamittal.wordpress.com/24/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/priyankamittal.wordpress.com/24/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/priyankamittal.wordpress.com/24/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/priyankamittal.wordpress.com/24/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/priyankamittal.wordpress.com/24/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/priyankamittal.wordpress.com/24/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/priyankamittal.wordpress.com/24/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/priyankamittal.wordpress.com/24/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/priyankamittal.wordpress.com/24/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=priyankamittal.wordpress.com&amp;blog=7954890&amp;post=24&amp;subd=priyankamittal&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://priyankamittal.wordpress.com/2009/05/30/welcome/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/e9804fc290303866d1aabda08ae33625?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">priyanka</media:title>
		</media:content>
	</item>
	</channel>
</rss>
