<?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>IT Geek!</title>
	<atom:link href="http://itgeek.in/feed" rel="self" type="application/rss+xml" />
	<link>http://itgeek.in</link>
	<description>the geek life of a Web Developer and Hobbiest Photographer</description>
	<lastBuildDate>Sun, 04 Jul 2010 18:29:18 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.5</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>ASP.NET Image Manipulation: ASP File as the Image Source</title>
		<link>http://itgeek.in/asp-net/asp-net-image-manipulation-asp-file-as-the-image-source.html</link>
		<comments>http://itgeek.in/asp-net/asp-net-image-manipulation-asp-file-as-the-image-source.html#comments</comments>
		<pubDate>Sun, 04 Jul 2010 17:35:30 +0000</pubDate>
		<dc:creator>Charandeep Singh</dc:creator>
				<category><![CDATA[ASP.NET]]></category>
		<category><![CDATA[Bitmap]]></category>
		<category><![CDATA[graphics]]></category>
		<category><![CDATA[image manipulation]]></category>
		<category><![CDATA[imaging]]></category>
		<category><![CDATA[OutputStream]]></category>

		<guid isPermaLink="false">http://itgeek.in/?p=518</guid>
		<description><![CDATA[.NET Framework with no doubt is very extensible and has a wide range of Classes which helps you to do anything, really anything. In case of graphics/image manipulation, there is a library called GDI(Graphics Device Interface) which is a part of .NET Framework and has a wide range of classes to perform operations like Create/Edit/Draw/Save [...]]]></description>
			<content:encoded><![CDATA[<p>.NET Framework with no doubt is very extensible and has a wide range of Classes which helps you to do anything, really anything. In case of graphics/image manipulation, there is a library called GDI(Graphics Device Interface) which is a part of .NET Framework and has a wide range of classes to perform operations like Create/Edit/Draw/Save on Image/Graphics. The scope of this article will be to opening a image file and sending Response as image which is Binary, so an ASP file (.aspx) act as the Image File which can be used inside the Generic <img> tag as the source. All of the code will be in C#.<span id="more-518"></span></p>
<h4>Importing Namespaces</h4>
<p>First we need to import the Namespaces which allow us to use GDI Classes.</p>
<pre class="brush: csharp;">
using System.Drawing;
using System.Drawing.Imaging;
</pre>
<h4>Writing Image to Response</h4>
<p>Next, we will write the code which will read the image and trigger it to Response.</p>
<pre class="brush: csharp;">
Bitmap imgNew;  

imgNew = new Bitmap(Server.MapPath(&quot;~/Goldentemple.jpg&quot;));
imgNew.Save(Response.OutputStream, ImageFormat.Jpeg);
imgNew.Dispose();
</pre>
<p>First, we create an instance of the class Bitmap. Bitmap class is very flexible, we can do many different operation on image like rotating, flipping etc. Then we create a new object of Bitmap class and specifying file path. Using Server.MapPath is always preferred. Next, we Save the image to our OutputStream i.e. the HTML output that will be send back to browser on a request. Last, we free all memory of object.</p>
<h4>Here we Go!</h4>
<p>That’s all. We’re done now. Just specify the file name in the source property of <img> tag. In my case, it’s Image.aspx.</p>
<pre class="brush: csharp;">
&lt;img src=&quot;Image.aspx&quot; /&gt;
</pre>
<h4>Download Source Code</h4>
<p>Code we have used so far in bundled in a Project, which can be <a href="http://itgeek.in/wp-content/uploads/2010/07/ImageManip.zip">downloaded here</a>. It’s in C#.</p>
<h4>What’s Next?</h4>
<p>As I said, scope of this article is to keep it very simple. There are immense possibilities, that can happen. For further advancement in this, I prefer you to read following articles.</p>
<ul>
<li><a href="http://msdn.microsoft.com/en-us/library/system.drawing.bitmap.aspx" target="_blank">Bitmap Class (System.Drawing)</a></li>
<li><a href="http://msdn.microsoft.com/en-us/library/system.drawing.graphics.aspx" target="_blank">Graphics Class (System.Drawing)</a></li>
<li><a href="http://www.bobpowell.net/drawing_an_image.htm" target="_blank">Drawing an Image</a></li>
<li><a href="http://msdn.microsoft.com/en-us/library/system.drawing.graphics.drawimage.aspx" target="_blank">Graphics.DrawImage Method (System.Drawing)</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://itgeek.in/asp-net/asp-net-image-manipulation-asp-file-as-the-image-source.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Adapting Microsoft .NET Framework Technology</title>
		<link>http://itgeek.in/life/adapting-microsoft-net-framework-technology.html</link>
		<comments>http://itgeek.in/life/adapting-microsoft-net-framework-technology.html#comments</comments>
		<pubDate>Thu, 03 Jun 2010 18:30:33 +0000</pubDate>
		<dc:creator>Charandeep Singh</dc:creator>
				<category><![CDATA[ASP.NET]]></category>
		<category><![CDATA[Life]]></category>
		<category><![CDATA[.net]]></category>
		<category><![CDATA[application]]></category>
		<category><![CDATA[college]]></category>
		<category><![CDATA[geeksingh]]></category>
		<category><![CDATA[grades]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[project]]></category>
		<category><![CDATA[switch]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://itgeek.in/?p=509</guid>
		<description><![CDATA[It is now quite long, I have updated blog. Actually, it was hard time for me. There were whole lot of bad and some good things happened during this time. Things like not getting good grades and even more worse that again got compartment in one of the subject, really making me fell down. At [...]]]></description>
			<content:encoded><![CDATA[<p>It is now quite long, I have updated blog. Actually, it was hard time for me. There were whole lot of bad and some good things happened during this time. Things like not getting good grades and even more worse that again got compartment in one of the subject, really making me fell down. At one point of time, I even thought of stop doing all these computer stuff. But luckily, I can&#8217;t. <img src='http://itgeek.in/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  Later on, me and <a href="http://webgarb.com/" target="_blank">a friend</a>, was discussing about doing something together and so decided to start a Technology Blog. We started off with very excitement. But later on, we don&#8217;t write much on it. By the way, blog is <a href="http://geeksingh.com/" target="_blank">GeekSingh.com</a>.</p>
<p>When I was new in Web Technology, it seems like PHP is only giant available to develop Dynamic Web Applications. I really work hard on learning and practicing it. It was really fun. But when I try to build larger Applications. I got stucked every-time. There was so many ideas, which I was unable to implement fully, I always got stuck in between the Projects. The reason is, PHP is a scripting language, which is not targeted for developing a specific kind of Web Applications.<span id="more-509"></span> In scripting languages, you have to write each and every logic for your application on your own, like business logic, data logic, presentation logic etc. So, it was hard for the beginner like me to write all these logics, and keep the safe balanced bridge between them. At that time, I was not aware of Frameworks used in PHP like Zend, cakePHP etc. Later on, I started exploring Wordpress. I must say, wordpress is most greatest Opensource application, I have ever seen. Whenever I mess with it, I was like &#8220;Hey man, I can do anything with this!&#8221;. <img src='http://itgeek.in/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  And I still love it!.</p>
<p>So, it was last year of my graduation. I was supposed to do a Project. Though it was a formality kind of thing. But still I want it to be Good, and I want to put all my dedication into it. Lecturers at college suggest us to use only Visual Basic or ASP.NET for our Projects. Those were the only two choices available. When I asked them, why can&#8217;t we use other platform/languages like PHP or anything else? they told Teachers which are going to take your test on Projects are not qualified enough. So, with this confusion and in hurry, I forcibly decided to go with ASP.NET. At that time, I didn&#8217;t know anything about ASP.NET or .NET except that it is rival of PHP. So I started presuming that ASP.NET would be similar like PHP.  We were a team of three. Now we need someone who will guide us in the project. We got this awesome <a href="http://tclogics.com/" target="_blank">teacher</a>, whom through out guide us very well. I learn alot from them. While my learning, I started feeling like it is totally different from PHP. The main thing is it is all based on Framework, which have everything we need to create a complete Web Application. And the development is so quick. I started feeling that now I can implement my previous ideas/thoughts into real-time Applications, that I was not able to do in PHP. So, I hope that switching to ASP.NET from PHP, will be one of my good decisions.</p>
]]></content:encoded>
			<wfw:commentRss>http://itgeek.in/life/adapting-microsoft-net-framework-technology.html/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>If Websites were People&#8230;</title>
		<link>http://itgeek.in/funny/if-websites-were-people.html</link>
		<comments>http://itgeek.in/funny/if-websites-were-people.html#comments</comments>
		<pubDate>Mon, 24 Aug 2009 15:24:21 +0000</pubDate>
		<dc:creator>Charandeep Singh</dc:creator>
				<category><![CDATA[Funny]]></category>
		<category><![CDATA[compare]]></category>
		<category><![CDATA[fun]]></category>
		<category><![CDATA[people]]></category>
		<category><![CDATA[website]]></category>

		<guid isPermaLink="false">http://itgeek.in/?p=380</guid>
		<description><![CDATA[&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;

			     
                 
								
			       		
	     				    	Close   	
				
	
			    



			     
     [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://itgeek.in/wp-content/uploads/2009/08/facebookguy-195x300.jpg" />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<img src="http://itgeek.in/wp-content/uploads/2009/08/twitterguy-129x300.jpg"/><br /><span id="more-380"></span>

			    <a href="http://itgeek.in/wp-content/uploads/2009/08/myspaceguy.jpg" class="highslide"  onclick="return hs.expand(this, {captionId: 'caption-for-P3800'})"> 
                <img src="http://itgeek.in/wp-content/uploads/2009/08/myspaceguy-154x300.jpg" alt="" border="0" id="P3800" title="" /></a> 
								<div class='highslide-caption' id='caption-for-P3800'>
			       		
	     				    	<a href="#" onclick="hs.close(this)" class="highslide-close">Close</a>   	
				<div style="clear:both"></div>
	
			    </div>



			    <a href="http://itgeek.in/wp-content/uploads/2009/08/wikipediaguy.jpg" class="highslide"  onclick="return hs.expand(this, {captionId: 'caption-for-P3801'})"> 
                <img src="http://itgeek.in/wp-content/uploads/2009/08/wikipediaguy-166x300.jpg" alt="" border="0" id="P3801" title="" /></a> 
								<div class='highslide-caption' id='caption-for-P3801'>
			       		
	     				    	<a href="#" onclick="hs.close(this)" class="highslide-close">Close</a>   	
				<div style="clear:both"></div>
	
			    </div>



			    <a href="http://itgeek.in/wp-content/uploads/2009/08/deviantart_emogirl.jpg" class="highslide"  onclick="return hs.expand(this, {captionId: 'caption-for-P3802'})"> 
                <img src="http://itgeek.in/wp-content/uploads/2009/08/deviantart_emogirl-155x300.jpg" alt="" border="0" id="P3802" title="" /></a> 
								<div class='highslide-caption' id='caption-for-P3802'>
			       		
	     				    	<a href="#" onclick="hs.close(this)" class="highslide-close">Close</a>   	
				<div style="clear:both"></div>
	
			    </div>



			    <a href="http://itgeek.in/wp-content/uploads/2009/08/youtube_google_guys.jpg" class="highslide"  onclick="return hs.expand(this, {captionId: 'caption-for-P3803'})"> 
                <img src="http://itgeek.in/wp-content/uploads/2009/08/youtube_google_guys-270x300.jpg" alt="" border="0" id="P3803" title="" /></a> 
								<div class='highslide-caption' id='caption-for-P3803'>
			       		
	     				    	<a href="#" onclick="hs.close(this)" class="highslide-close">Close</a>   	
				<div style="clear:both"></div>
	
			    </div>

<br /> Found this <a href="http://elontirien.deviantart.com/art/Internet-University-Cast-120846620">here</a>.</p>
<p></p>
]]></content:encoded>
			<wfw:commentRss>http://itgeek.in/funny/if-websites-were-people.html/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Orkut Toolbar &#8211; Simple Text Formatting with deviantART Emoticons</title>
		<link>http://itgeek.in/greasemonkey-scripts/orkut-toolbar-simple-text-formatting-with-deviantart-emoticons.html</link>
		<comments>http://itgeek.in/greasemonkey-scripts/orkut-toolbar-simple-text-formatting-with-deviantart-emoticons.html#comments</comments>
		<pubDate>Sun, 23 Aug 2009 18:03:12 +0000</pubDate>
		<dc:creator>Charandeep Singh</dc:creator>
				<category><![CDATA[Greasemonkey Scripts]]></category>
		<category><![CDATA[greasemonkey]]></category>
		<category><![CDATA[orkut]]></category>
		<category><![CDATA[script]]></category>
		<category><![CDATA[toolbar]]></category>

		<guid isPermaLink="false">http://itgeek.in/?p=355</guid>
		<description><![CDATA[This script provide an easy interface for formatting scrapbook and community messages. You can format text with Bold, Italic, Underline with different colors and smileys. Along with that, it has 500 really amazing emoticons present in deviantART. Go ahead, install it and amaze your friends with this.  


			     
  [...]]]></description>
			<content:encoded><![CDATA[<p>This script provide an easy interface for formatting scrapbook and community messages. You can format text with Bold, Italic, Underline with different colors and smileys. Along with that, it has 500 really amazing emoticons present in deviantART. Go ahead, install it and amaze your friends with this. <img src='http://itgeek.in/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p align="center">

			    <a href="http://itgeek.in/wp-content/uploads/2009/08/orkut_toolbar.jpg" class="highslide"  onclick="return hs.expand(this, {captionId: 'caption-for-P3550'})"> 
                <img src="http://itgeek.in/wp-content/uploads/2009/08/orkut_toolbar-300x222.jpg" alt="Click to see in fullsize" border="0" id="P3550" title="Click to see in fullsize" /></a> 
								<div class='highslide-caption' id='caption-for-P3550'>
			       		
	     				    	<a href="#" onclick="hs.close(this)" class="highslide-close">Close</a>   	
				<div style="clear:both">Orkut Toolbar Screenshot</div>
	
			    </div>

</p>
<p><span id="more-355"></span><br />
<b>Installation</b></p>
<ol style="color:black">
<li>Get a <a href="http://www.mozilla.com/en-US/?from=sfx&amp;uid=261625&amp;t=438" target="_blank">Firefox</a> browser (if you don&#8217;t have it)</li>
<li>Install <a href="https://addons.mozilla.org/firefox/addon/748" target="_blank">Greasemonkey</a> in your Firefox.</li>
<li>Then, <a href="http://itgeek.in/orkut.user.js" target="_blank">Click here</a> to install this script. (That&#8217;s All)</li>
</ol>
<p><b>Note: </b>If you&#8217;re on a low bandwidth internet, you must wait for few seconds so all emoticons loaded, and then toolbar will be inserted into edit section.</p>
<p>Original script is written by Sharath(http://userscripts.org/scripts/show/12946), I just added a new option which has list of deviantART emoticons.</p>
<p>If you find problem installing, feel free to ask me anything. Will be waiting for your reviews and comments on it. </p>
<p>My Orkut Profile is <a href="http://www.orkut.co.in/Main#Profile.aspx?uid=5914050707078160277">here</a>, add me and tell me I&#8217;m cool. <img src='http://itgeek.in/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Cheers!</p>
<blockquote><p><strong>Update:</strong> Updated with a &#8220;Promote This&#8221; Button and new links. You can use it to promote this script. <img src='http://itgeek.in/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  Take the cursor at the end and click it!.</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://itgeek.in/greasemonkey-scripts/orkut-toolbar-simple-text-formatting-with-deviantart-emoticons.html/feed</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Why people that work with computers seem to have a lot of spare time?</title>
		<link>http://itgeek.in/funny/why-people-that-work-with-computers-seem-to-have-a-lot-of-spare-time.html</link>
		<comments>http://itgeek.in/funny/why-people-that-work-with-computers-seem-to-have-a-lot-of-spare-time.html#comments</comments>
		<pubDate>Fri, 14 Aug 2009 08:00:37 +0000</pubDate>
		<dc:creator>Charandeep Singh</dc:creator>
				<category><![CDATA[Funny]]></category>
		<category><![CDATA[computer]]></category>
		<category><![CDATA[geeks]]></category>
		<category><![CDATA[nerd]]></category>
		<category><![CDATA[spare]]></category>
		<category><![CDATA[time]]></category>

		<guid isPermaLink="false">http://itgeek.in/?p=356</guid>
		<description><![CDATA[
Isn&#8217;t that true?  
Found this here.
]]></description>
			<content:encoded><![CDATA[<p align="center"><a href="http://itgeek.in/wp-content/uploads/2009/08/free_time.png"><img src="http://itgeek.in/wp-content/uploads/2009/08/free_time.png" alt="free_time" title="free_time" width="450" height="295" class="alignnone size-full wp-image-357"  style="border:0px"/></a></p>
<p align="center">Isn&#8217;t that true? <img src='http://itgeek.in/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p><span id="more-356"></span>Found this <a href="http://www.eviljaymz.com/">here</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://itgeek.in/funny/why-people-that-work-with-computers-seem-to-have-a-lot-of-spare-time.html/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>When I was a Child&#8230;</title>
		<link>http://itgeek.in/life/when-i-was-a-child.html</link>
		<comments>http://itgeek.in/life/when-i-was-a-child.html#comments</comments>
		<pubDate>Mon, 10 Aug 2009 18:01:14 +0000</pubDate>
		<dc:creator>Charandeep Singh</dc:creator>
				<category><![CDATA[Life]]></category>
		<category><![CDATA[charandeep]]></category>
		<category><![CDATA[itgeek]]></category>
		<category><![CDATA[old]]></category>
		<category><![CDATA[photos]]></category>
		<category><![CDATA[pics]]></category>
		<category><![CDATA[singh]]></category>
		<category><![CDATA[snaps]]></category>

		<guid isPermaLink="false">http://itgeek.in/?p=306</guid>
		<description><![CDATA[I love to sit and look at my old photos when we growing up. It&#8217;s so fun to see how we have changed over time and see how ridiculous we looked.   Well, I feel like I should share my old photos with you all, don&#8217;t worry I&#8217;m not going to share the ridiculous [...]]]></description>
			<content:encoded><![CDATA[<p>I love to sit and look at my old photos when we growing up. It&#8217;s so fun to see how we have changed over time and see how ridiculous we looked. <img src='http://itgeek.in/wp-includes/images/smilies/icon_lol.gif' alt=':lol:' class='wp-smiley' />  Well, I feel like I should share my old photos with you all, don&#8217;t worry I&#8217;m not going to share the ridiculous one&#8217;s. <img src='http://itgeek.in/wp-includes/images/smilies/icon_mrgreen.gif' alt=':mrgreen:' class='wp-smiley' /> </p>
<p align="center"><i>(click on the photo to see it in fullsize)</i></p>
<p align="center">

			    <a href="http://itgeek.in/wp-content/uploads/2009/08/scan0051e.jpg" class="highslide"  onclick="return hs.expand(this, {captionId: 'caption-for-P3060'})"> 
                <img src="http://itgeek.in/wp-content/uploads/2009/08/scan0051e-203x300.jpg" alt="Well, As you know!... Singh is King :)" border="0" id="P3060" title="Well, As you know!... Singh is King :)" /></a> 
								<div class='highslide-caption' id='caption-for-P3060'>
			       		
	     				    	<a href="#" onclick="hs.close(this)" class="highslide-close">Close</a>   	
				<div style="clear:both">Well, As you know!... Singh is King :)</div>
	
			    </div>

</p>
<p align="center">Well, As you know!&#8230; Singh is King <img src='http://itgeek.in/wp-includes/images/smilies/icon_cool.gif' alt='8)' class='wp-smiley' /> </p>
<p><span id="more-306"></span></p>
<p align="center">

			    <a href="http://itgeek.in/wp-content/uploads/2009/08/scan0086e.jpg" class="highslide"  onclick="return hs.expand(this, {captionId: 'caption-for-P3061'})"> 
                <img src="http://itgeek.in/wp-content/uploads/2009/08/scan0086e-191x300.jpg" alt="" border="0" id="P3061" title="" /></a> 
								<div class='highslide-caption' id='caption-for-P3061'>
			       		
	     				    	<a href="#" onclick="hs.close(this)" class="highslide-close">Close</a>   	
				<div style="clear:both"></div>
	
			    </div>

</p>
<p align="center">My 1st Birthday!!!</p>
<p align="center">

			    <a href="http://itgeek.in/wp-content/uploads/2009/08/scan0067e.jpg" class="highslide"  onclick="return hs.expand(this, {captionId: 'caption-for-P3062'})"> 
                <img src="http://itgeek.in/wp-content/uploads/2009/08/scan0067e-300x200.jpg" alt="" border="0" id="P3062" title="" /></a> 
								<div class='highslide-caption' id='caption-for-P3062'>
			       		
	     				    	<a href="#" onclick="hs.close(this)" class="highslide-close">Close</a>   	
				<div style="clear:both"></div>
	
			    </div>

</p>
<p align="center">This is my Favorite!!!</p>
<p align="center">

			    <a href="http://itgeek.in/wp-content/uploads/2009/08/scan0054e.jpg" class="highslide"  onclick="return hs.expand(this, {captionId: 'caption-for-P3063'})"> 
                <img src="http://itgeek.in/wp-content/uploads/2009/08/scan0054e-232x300.jpg" alt="" border="0" id="P3063" title="" /></a> 
								<div class='highslide-caption' id='caption-for-P3063'>
			       		
	     				    	<a href="#" onclick="hs.close(this)" class="highslide-close">Close</a>   	
				<div style="clear:both">Mom said I used to make faces like this to copy </div>
	
			    </div>

</p>
<p align="center">Mom said I used to make faces like this to copy &#8220;rambo&#8221; character of some TV serial&#8230; <img src='http://itgeek.in/wp-includes/images/smilies/icon_lol.gif' alt=':lol:' class='wp-smiley' /> </p>
<p align="center">

			    <a href="http://itgeek.in/wp-content/uploads/2009/08/scan0009e.jpg" class="highslide"  onclick="return hs.expand(this, {captionId: 'caption-for-P3064'})"> 
                <img src="http://itgeek.in/wp-content/uploads/2009/08/scan0009e-195x300.jpg" alt="Close Up" border="0" id="P3064" title="Close Up" /></a> 
								<div class='highslide-caption' id='caption-for-P3064'>
			       		
	     				    	<a href="#" onclick="hs.close(this)" class="highslide-close">Close</a>   	
				<div style="clear:both">Close Up</div>
	
			    </div>

</p>
<p align="center">Close Up <img src='http://itgeek.in/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p align="center">

			    <a href="http://itgeek.in/wp-content/uploads/2009/08/scan0029e.jpg" class="highslide"  onclick="return hs.expand(this, {captionId: 'caption-for-P3065'})"> 
                <img src="http://itgeek.in/wp-content/uploads/2009/08/scan0029e-300x207.jpg" alt="Bro and sis's" border="0" id="P3065" title="Bro and sis's" /></a> 
								<div class='highslide-caption' id='caption-for-P3065'>
			       		
	     				    	<a href="#" onclick="hs.close(this)" class="highslide-close">Close</a>   	
				<div style="clear:both">Bro and sis's</div>
	
			    </div>

</p>
<p align="center">Bro and sis&#8217;s</p>
<p align="center">

			    <a href="http://itgeek.in/wp-content/uploads/2009/08/scan0047e.jpg" class="highslide"  onclick="return hs.expand(this, {captionId: 'caption-for-P3066'})"> 
                <img src="http://itgeek.in/wp-content/uploads/2009/08/scan0047e-300x204.jpg" alt="With My Bro, Roopi" border="0" id="P3066" title="With My Bro, Roopi" /></a> 
								<div class='highslide-caption' id='caption-for-P3066'>
			       		
	     				    	<a href="#" onclick="hs.close(this)" class="highslide-close">Close</a>   	
				<div style="clear:both">With My Bro, Roopi</div>
	
			    </div>

</p>
<p align="center">With My Bro, Roopi</p>
<p align="center">

			    <a href="http://itgeek.in/wp-content/uploads/2009/08/scan0034e.jpg" class="highslide"  onclick="return hs.expand(this, {captionId: 'caption-for-P3067'})"> 
                <img src="http://itgeek.in/wp-content/uploads/2009/08/scan0034e-213x300.jpg" alt="Drunk" border="0" id="P3067" title="Drunk" /></a> 
								<div class='highslide-caption' id='caption-for-P3067'>
			       		
	     				    	<a href="#" onclick="hs.close(this)" class="highslide-close">Close</a>   	
				<div style="clear:both">Drunk</div>
	
			    </div>

</p>
<p align="center">Drunk <img src='http://itgeek.in/wp-includes/images/smilies/icon_lol.gif' alt=':lol:' class='wp-smiley' /> </p>
<p align="center">

			    <a href="http://itgeek.in/wp-content/uploads/2009/08/scan0040e.jpg" class="highslide"  onclick="return hs.expand(this, {captionId: 'caption-for-P3068'})"> 
                <img src="http://itgeek.in/wp-content/uploads/2009/08/scan0040e-300x192.jpg" alt="Twins" border="0" id="P3068" title="Twins" /></a> 
								<div class='highslide-caption' id='caption-for-P3068'>
			       		
	     				    	<a href="#" onclick="hs.close(this)" class="highslide-close">Close</a>   	
				<div style="clear:both">Twins</div>
	
			    </div>

</p>
<p align="center">Twins <img src='http://itgeek.in/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p align="center">

			    <a href="http://itgeek.in/wp-content/uploads/2009/08/scan0045e.jpg" class="highslide"  onclick="return hs.expand(this, {captionId: 'caption-for-P3069'})"> 
                <img src="http://itgeek.in/wp-content/uploads/2009/08/scan0045e-300x196.jpg" alt="Hello! Mr. Johnny!" border="0" id="P3069" title="Hello! Mr. Johnny!" /></a> 
								<div class='highslide-caption' id='caption-for-P3069'>
			       		
	     				    	<a href="#" onclick="hs.close(this)" class="highslide-close">Close</a>   	
				<div style="clear:both">Hello! Mr. Johnny!</div>
	
			    </div>

</p>
<p align="center">Hello! Mr. Johnny!</p>
<p align="center">

			    <a href="http://itgeek.in/wp-content/uploads/2009/08/scan0024e.jpg" class="highslide"  onclick="return hs.expand(this, {captionId: 'caption-for-P30610'})"> 
                <img src="http://itgeek.in/wp-content/uploads/2009/08/scan0024e-300x205.jpg" alt="hmmm...well, not title for this" border="0" id="P30610" title="hmmm...well, not title for this" /></a> 
								<div class='highslide-caption' id='caption-for-P30610'>
			       		
	     				    	<a href="#" onclick="hs.close(this)" class="highslide-close">Close</a>   	
				<div style="clear:both">hmmm...well, not title for this</div>
	
			    </div>

</p>
<p align="center">hmmm&#8230;well, not title for this <img src='http://itgeek.in/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' /> </p>
<p align="center">

			    <a href="http://itgeek.in/wp-content/uploads/2009/08/scan0021e.jpg" class="highslide"  onclick="return hs.expand(this, {captionId: 'caption-for-P30611'})"> 
                <img src="http://itgeek.in/wp-content/uploads/2009/08/scan0021e-300x205.jpg" alt="*Blushing*" border="0" id="P30611" title="*Blushing*" /></a> 
								<div class='highslide-caption' id='caption-for-P30611'>
			       		
	     				    	<a href="#" onclick="hs.close(this)" class="highslide-close">Close</a>   	
				<div style="clear:both">*Blushing*</div>
	
			    </div>

</p>
<p align="center">*Blushing* <img src='http://itgeek.in/wp-includes/images/smilies/icon_redface.gif' alt=':oops:' class='wp-smiley' />  </p>
<p align="center">

			    <a href="http://itgeek.in/wp-content/uploads/2009/08/scan0018e.jpg" class="highslide"  onclick="return hs.expand(this, {captionId: 'caption-for-P30612'})"> 
                <img src="http://itgeek.in/wp-content/uploads/2009/08/scan0018e-300x199.jpg" alt="hehe... forcing my sis for a photo..." border="0" id="P30612" title="hehe... forcing my sis for a photo..." /></a> 
								<div class='highslide-caption' id='caption-for-P30612'>
			       		
	     				    	<a href="#" onclick="hs.close(this)" class="highslide-close">Close</a>   	
				<div style="clear:both">hehe... forcing my sis for a photo...</div>
	
			    </div>

</p>
<p align="center">hehe&#8230; <img src='http://itgeek.in/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' />  forcing my sis for a photo&#8230;</p>
<p align="center">

			    <a href="http://itgeek.in/wp-content/uploads/2009/08/scan0017e.jpg" class="highslide"  onclick="return hs.expand(this, {captionId: 'caption-for-P30613'})"> 
                <img src="http://itgeek.in/wp-content/uploads/2009/08/scan0017e-205x300.jpg" alt="Attention!!!" border="0" id="P30613" title="Attention!!!" /></a> 
								<div class='highslide-caption' id='caption-for-P30613'>
			       		
	     				    	<a href="#" onclick="hs.close(this)" class="highslide-close">Close</a>   	
				<div style="clear:both">Attention!!!</div>
	
			    </div>

</p>
<p align="center">Attention!!!</p>
<p align="center">

			    <a href="http://itgeek.in/wp-content/uploads/2009/08/scan0090e.jpg" class="highslide"  onclick="return hs.expand(this, {captionId: 'caption-for-P30614'})"> 
                <img src="http://itgeek.in/wp-content/uploads/2009/08/scan0090e-300x203.jpg" alt="At Work!" border="0" id="P30614" title="At Work!" /></a> 
								<div class='highslide-caption' id='caption-for-P30614'>
			       		
	     				    	<a href="#" onclick="hs.close(this)" class="highslide-close">Close</a>   	
				<div style="clear:both">At Work!</div>
	
			    </div>

</p>
<p align="center">At Work! <img src='http://itgeek.in/wp-includes/images/smilies/icon_mrgreen.gif' alt=':mrgreen:' class='wp-smiley' /> </p>
<p>So, I guess you enjoyed it. Leave a comment. <img src='http://itgeek.in/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://itgeek.in/life/when-i-was-a-child.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>deviantART &#8211; Simple Text Formatting with Easy Selection of Emoticons</title>
		<link>http://itgeek.in/tools/deviantart-simple-text-formatting-with-easy-selection-of-emoticons.html</link>
		<comments>http://itgeek.in/tools/deviantart-simple-text-formatting-with-easy-selection-of-emoticons.html#comments</comments>
		<pubDate>Mon, 10 Aug 2009 15:12:27 +0000</pubDate>
		<dc:creator>Charandeep Singh</dc:creator>
				<category><![CDATA[Greasemonkey Scripts]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[comments]]></category>
		<category><![CDATA[deviantart]]></category>
		<category><![CDATA[emoticons]]></category>
		<category><![CDATA[formatting]]></category>
		<category><![CDATA[greasemonkey]]></category>
		<category><![CDATA[journal]]></category>
		<category><![CDATA[scripts]]></category>
		<category><![CDATA[text]]></category>

		<guid isPermaLink="false">http://itgeek.in/?p=308</guid>
		<description><![CDATA[This script provide an easy interface for formatting comments, journals, signature etc in deviantART. You can format your text with Bold, Italic, Underline, Sub and Sup. Along with that, it has a easy &#8220;one-click&#8221; drop-down selection from all 500 emoticons present in deviantART.
Screenshots

Comment on Deviation


Comment on Profile Page

Writing a New Journal Entry
Installation

Get a Firefox browser [...]]]></description>
			<content:encoded><![CDATA[<p>This script provide an easy interface for formatting comments, journals, signature etc in deviantART. You can format your text with Bold, Italic, Underline, Sub and Sup. Along with that, it has a easy &#8220;one-click&#8221; drop-down selection from all 500 emoticons present in deviantART.</p>
<p><b>Screenshots</b></p>
<p align="center"><a href="http://itgeek.in/wp-content/uploads/2009/08/userscript.jpg"><img src="http://itgeek.in/wp-content/uploads/2009/08/userscript.jpg" alt="userscript" title="userscript" width="420" height="255" class="alignnone size-full wp-image-314" /></a></p>
<p align="center">Comment on Deviation</p>
<p><span id="more-308"></span></p>
<p align="center"><img src="http://itgeek.in/wp-content/uploads/2009/08/userscript2.jpg" alt="userscript2" title="userscript2" width="468" height="498" class="alignnone size-full wp-image-312" /></p>
<p align="center">Comment on Profile Page</p>
<p align="center"><img src="http://itgeek.in/wp-content/uploads/2009/08/userscript3.jpg" alt="userscript3" title="userscript3" width="616" height="529" class="alignnone size-full wp-image-313" /></p>
<p align="center">Writing a New Journal Entry</p>
<p><b>Installation</b></p>
<ol style="color:black">
<li>Get a <a href="http://www.mozilla.com/en-US/?from=sfx&amp;uid=261625&amp;t=438" target="_blank">Firefox</a> browser (if you don&#8217;t have it)</li>
<li>Install <a href="https://addons.mozilla.org/en-US/firefox/addon/748" target="_blank">Greasemonkey</a> in your Firefox.</li>
<li>Then, <a href="http://userscripts.org/scripts/source/55388.user.js" target="_blank">Click here</a> to install this script. (That&#8217;s All)</li>
</ol>
<p>For more information about the script like reviews and discussion, see the entry of this script of <a href="http://userscripts.org/scripts/show/55388" target="_blank">userscripts.org</a>.</p>
<p>Currently, It is not working in &#8220;reply&#8221; section. Hope Will find the fix soon and will update the script accordingly. <img src='http://itgeek.in/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://itgeek.in/tools/deviantart-simple-text-formatting-with-easy-selection-of-emoticons.html/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Hack Protest Against Racism in Australia on RAAF Website</title>
		<link>http://itgeek.in/news/hack-protest-against-racism-in-australia-on-raaf-website.html</link>
		<comments>http://itgeek.in/news/hack-protest-against-racism-in-australia-on-raaf-website.html#comments</comments>
		<pubDate>Mon, 20 Jul 2009 15:41:50 +0000</pubDate>
		<dc:creator>Charandeep Singh</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[attact]]></category>
		<category><![CDATA[hack]]></category>
		<category><![CDATA[indian]]></category>
		<category><![CDATA[raaf]]></category>
		<category><![CDATA[racism]]></category>
		<category><![CDATA[student]]></category>

		<guid isPermaLink="false">http://itgeek.in/?p=297</guid>
		<description><![CDATA[Today, I came across this news that RAAF Website was hacked by an Indian Hacker. And the reason why hacker hack the site was to protest against the Australian government on not taking any major steps to stop the increasing Racism on the Indian Student in Australia. On July 16, 2009 a message was shown [...]]]></description>
			<content:encoded><![CDATA[<p>Today, I came across this news that <a href="http://www.raaf.gov.au/"><acronym title="Royal Australian Air Force">RAAF</acronym> Website</a> was hacked by an Indian Hacker. And the reason why hacker hack the site was to protest against the Australian government on not taking any major steps to stop the increasing Racism on the Indian Student in Australia. On July 16, 2009 a message was shown on the home page of the website as a warning to the Australian President.<span id="more-297"></span><br />
<br/><br/><br />
<blockquote>This is a warning message to Australian Government. Immediately take all measures to stop racist attacks against Indian students in Australia else I will pawn all your cyber properties like this one.</p></blockquote>
<p>Many of Indian students have migrated to Australia and other countries, to seek Higher Education and to fulfill there dream of going foreign. But seems like this isn&#8217;t that easy to do. But in my views this is not the best way to doing protest. Well, I would not like to discuss much about this issue here, because this is quite controversial.</p>
<p>Now, I hope government should now take some major steps related to the security of Indian Student studying in Australia.</p>
]]></content:encoded>
			<wfw:commentRss>http://itgeek.in/news/hack-protest-against-racism-in-australia-on-raaf-website.html/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Photography &amp; Digital Art &#8211; Beginning of New Age</title>
		<link>http://itgeek.in/life/photography-digital-art-beginning-of-new-age.html</link>
		<comments>http://itgeek.in/life/photography-digital-art-beginning-of-new-age.html#comments</comments>
		<pubDate>Thu, 09 Jul 2009 16:21:44 +0000</pubDate>
		<dc:creator>Charandeep Singh</dc:creator>
				<category><![CDATA[Digital Art]]></category>
		<category><![CDATA[Life]]></category>
		<category><![CDATA[Photography]]></category>
		<category><![CDATA[art]]></category>
		<category><![CDATA[creative]]></category>
		<category><![CDATA[deviantart]]></category>
		<category><![CDATA[digital]]></category>
		<category><![CDATA[flickr]]></category>
		<category><![CDATA[photomanipulation]]></category>
		<category><![CDATA[photoshop]]></category>
		<category><![CDATA[secret]]></category>
		<category><![CDATA[tutorials]]></category>

		<guid isPermaLink="false">http://itgeek.in/?p=262</guid>
		<description><![CDATA[Last couple of months, I&#8217;m so much obsessed with Flickr and deviantART. I just love the simplicity of the Flickr, and there are lots of really great photographers to get inspiration. deviantART is a very large online community of great digital artists.
Well title of the post sounds so cool, right?, I know you will figure [...]]]></description>
			<content:encoded><![CDATA[<p>Last couple of months, I&#8217;m so much obsessed with <a  href="http://flickr.com/sunny_asr">Flickr</a> and <a href="http://itgeek-in.deviantart.com/">deviantART</a>. I just love the simplicity of the Flickr, and there are lots of really great photographers to get inspiration. deviantART is a very large online community of great digital artists.</p>
<p>Well title of the post sounds so cool, right?, I know you will figure out later. So, I try myself on photography, just for the sake I take some photos of my college which can be seen on <a href="http://itgeek.in/?page_id=7">my photos page</a> or on <a href="http://www.flickr.com/photos/sunny_asr/sets/72157615235952904/">flickr</a>. After that, I take some macro of flowers etc. But something which really catch my attention is Photomanipulation. I just love to make photo a creative look. Well, honestly saying I don&#8217;t really know Photoshop that much before. Now I am letting you know my secret, so don&#8217;t reveal this to anyone else. <span id="more-262"></span> <img src='http://itgeek.in/wp-includes/images/smilies/icon_mrgreen.gif' alt=':mrgreen:' class='wp-smiley' />  Check this out <a href="http://www.photoshoptopsecret.com/" target="_blank">Photoshoptopsecret</a>, just go through the site. There are really cool tutorials which helps you give a kickstart in photomanipulation. Whatever I learn about photoshop is from these tutorials. Later on after you have basics of photoshop, there is many resources available on internet(through search) to get master in Photomanipulation.</p>
<p>There are some photo manipulations, I&#8217;ve done yet. <i>(Click on the image to enlarge)</i></p>
<p align="center">

			    <a href="http://farm4.static.flickr.com/3554/3694495113_fcdeb52192.jpg" class="highslide"  onclick="return hs.expand(this, {captionId: 'caption-for-P2620'})"> 
                <img src="http://farm4.static.flickr.com/3554/3694495113_fcdeb52192_m.jpg" alt="Vampire Love" border="0" id="P2620" title="Vampire Love" /></a> 
								<div class='highslide-caption' id='caption-for-P2620'>
			       		
	     				    	<a href="#" onclick="hs.close(this)" class="highslide-close">Close</a>   	
				<div style="clear:both">Vampire Love</div>
	
			    </div>

&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;

			    <a href="http://farm3.static.flickr.com/2580/3677238491_8fc0258ea2.jpg" class="highslide"  onclick="return hs.expand(this, {captionId: 'caption-for-P2621'})"> 
                <img src="http://farm3.static.flickr.com/2580/3677238491_8fc0258ea2_m.jpg" alt="Some Tears Never Dry" border="0" id="P2621" title="Some Tears Never Dry" /></a> 
								<div class='highslide-caption' id='caption-for-P2621'>
			       		
	     				    	<a href="#" onclick="hs.close(this)" class="highslide-close">Close</a>   	
				<div style="clear:both">Some Tears Never Dry</div>
	
			    </div>

&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;

			    <a href="http://farm3.static.flickr.com/2523/3677235001_a1cfd5ccf6.jpg" class="highslide"  onclick="return hs.expand(this, {captionId: 'caption-for-P2622'})"> 
                <img src="http://farm3.static.flickr.com/2523/3677235001_a1cfd5ccf6_m.jpg" alt="Some Tears Never Dry" border="0" id="P2622" title="Some Tears Never Dry" /></a> 
								<div class='highslide-caption' id='caption-for-P2622'>
			       		
	     				    	<a href="#" onclick="hs.close(this)" class="highslide-close">Close</a>   	
				<div style="clear:both">Some Tears Never Dry</div>
	
			    </div>

</p>
<p align="center"><i>(Stocks taken from deviantart(mnoo, jinxywinxy, wala, madamgrief-stock) and sxu.hu)</i></p>
<p>They are not really that great, but I am trying to do my best. Hope will get some more manipulations *soon*. And maybe will write some tutorials too in future. For updates of my photo work, <a href="http://flickr.com/sunny_asr">add me on Flickr</a> or <a href="http://itgeek-in.deviantart.com">watch me on deviantART</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://itgeek.in/life/photography-digital-art-beginning-of-new-age.html/feed</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Reading Excel Spreadsheets with PHP</title>
		<link>http://itgeek.in/php/reading-excel-spreadsheets-with-php.html</link>
		<comments>http://itgeek.in/php/reading-excel-spreadsheets-with-php.html#comments</comments>
		<pubDate>Mon, 22 Jun 2009 17:43:41 +0000</pubDate>
		<dc:creator>Charandeep Singh</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[excel]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[office]]></category>
		<category><![CDATA[phpexcelreader]]></category>
		<category><![CDATA[spreadsheet]]></category>

		<guid isPermaLink="false">http://itgeek.in/?p=249</guid>
		<description><![CDATA[PHP is yet most powerful language when it comes to deal with different data formats like SQL Results, XML Files etc. To improve the functionality of PHP, we use extensions. There are many extensions/packages which let us to read more different types of data formats. Today, we will be using one of them, i.e. phpexcelreader.
PHPExcelReader [...]]]></description>
			<content:encoded><![CDATA[<p>PHP is yet most powerful language when it comes to deal with different data formats like SQL Results, XML Files etc. To improve the functionality of PHP, we use extensions. There are many extensions/packages which let us to read more different types of data formats. Today, we will be using one of them, i.e. <a href="http://sourceforge.net/projects/phpexcelreader/" target="_blank">phpexcelreader</a>.</p>
<p>PHPExcelReader comes with two files <em>oleread.inc</em> and <em>reader.php</em>. We will need to include <em>reader.php</em> in order to use the package. For the sake of &#8220;simplicity&#8221;, I have made some changes in example file and data. Grab it here:<span id="more-249"></span></p>
<p align="center"><a href="http://itgeek.in/wp-content/uploads/2009/06/phpexcelreader.zip">Dowload PHPExcelReader.zip</a></p>
<p align="center">Sample Excel Spreadsheet<br/>

			    <a href="http://itgeek.in/wp-content/uploads/2009/06/excel1.jpg" class="highslide"  onclick="return hs.expand(this, {captionId: 'caption-for-P2490'})"> 
                <img src="http://itgeek.in/wp-content/uploads/2009/06/excel1-300x218.jpg" alt="Sample Excel Spreadsheet" border="0" id="P2490" title="Sample Excel Spreadsheet" /></a> 
								<div class='highslide-caption' id='caption-for-P2490'>
			       		
	     				    	<a href="#" onclick="hs.close(this)" class="highslide-close">Close</a>   	
				<div style="clear:both">Sample Excel Spreadsheet</div>
	
			    </div>

</p>
<p>Take a look at <em>example.php</em>, code is pretty much straight forward. As I said before, in order to use the package we need to include <em>reader.php</em> into our code.<br />
<code>require_once('excel/reader.php');</code><br />
Next, create a new object from the class <em>Spreadsheet_Excel_Reader</em> and give the excel file which you like to read.<br />
<code><br />
$xls = new Spreadsheet_Excel_Reader();<br />
$xls->read('indiastamps_yearsets.xls');<br />
</code><br />
All the rows and columns can be accessed through array variable <em>sheets</em>. We use two <em>for</em> loops to access each and every element of the sheet0.<br />
<code>$xls->sheets[0]['cells'][$row][$column]</code></p>
<p align="center">Result<br/>

			    <a href="http://itgeek.in/wp-content/uploads/2009/06/excel2.jpg" class="highslide"  onclick="return hs.expand(this, {captionId: 'caption-for-P2491'})"> 
                <img src="http://itgeek.in/wp-content/uploads/2009/06/excel2-272x300.jpg" alt="Result" border="0" id="P2491" title="Result" /></a> 
								<div class='highslide-caption' id='caption-for-P2491'>
			       		
	     				    	<a href="#" onclick="hs.close(this)" class="highslide-close">Close</a>   	
				<div style="clear:both">Result</div>
	
			    </div>

</p>
<p>If you are Microsoft Excel 2007 user, be sure about saving file in 1997-2003 .xls format else it will not work. Thanks for reading. <img src='http://itgeek.in/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://itgeek.in/php/reading-excel-spreadsheets-with-php.html/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
	</channel>
</rss>
