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

<channel>
	<title>ikrazzy.com</title>
	<atom:link href="http://www.ikrazzy.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.ikrazzy.com</link>
	<description>Little about my experience</description>
	<lastBuildDate>Wed, 11 Apr 2012 05:49:27 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>When to use PHP addslashes and stripslashes?</title>
		<link>http://www.ikrazzy.com/when-to-use-php-addslashes-and-stripslashes/</link>
		<comments>http://www.ikrazzy.com/when-to-use-php-addslashes-and-stripslashes/#comments</comments>
		<pubDate>Wed, 11 Apr 2012 05:49:27 +0000</pubDate>
		<dc:creator>anna</dc:creator>
				<category><![CDATA[All Topics]]></category>

		<guid isPermaLink="false">http://www.ikrazzy.com/?p=5420</guid>
		<description><![CDATA[PHP addslashes is used to quotes string with slashes. These characters are single quote, double quote, backslash and NULL and basically used whenever string is passed as database query. For example, if you want to insert name d&#8217;souza into database &#8230; <a href="http://www.ikrazzy.com/when-to-use-php-addslashes-and-stripslashes/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[ <p>PHP addslashes is used to quotes string with slashes. These characters are single quote, double quote, backslash and NULL and basically used whenever string is passed as database query.<span id="more-5420"></span></p>
<p>For example, if you want to insert name <strong>d&#8217;souza </strong>into database then we  need to quotes the string with backslashes.</p>
<pre>
$a = “d’souza”;
$sql = “insert into nametable(name) values($a)”;
</pre>
<p>The above SQL statement returns error. We need to use addslashes here to avoid such error.</p>
<pre>
$a = addslashes(“d’souza”);
</pre>
<p>In this way, we can use addslashes function.</p>
<p>PHP stripslashes is used to unquote’s a quoted string which is quoted with addslashes function.</p>
<p><strong>But still there is a question? Above code will  run without addslashes function.</strong></p>
<p>Yes, above code can run without addslashes if Magic Quotes is set to on. And in some version of PHP Magic Quotes is set on by default. But if see the PHP Manual it show warning “This feature has been DEPRECATED as of PHP 5.3.0 and REMOVED as of PHP 5.4.0.”</p>
<p><strong>What is Magic Quotes?</strong></p>
<p>Magic Quotes is a process that auto magically escapes incoming data to the <acronym>PHP</acronym> script. It&#8217;s preferred to code with magic quotes off and to instead escape the data at runtime, as needed.</p>
<p>Here, what is incoming data is data from GET, POST and COOKIE. So, when Magic Quotes is on all these are auto magically escapes and if you do addslashes do double escapes. For example</p>
<p>Suppose the value of $_GET[‘data’] is <strong>d’souza</strong></p>
<pre>$a = $_GET[‘data’];  // if magic quotes is on then value is  <strong>d\’souza</strong>
$a = addslashes($a); // if you run addslashes function on it then value is <strong>d\\’souza</strong></pre>
<p><strong>How to handle Magic Quotes?</strong></p>
<p>In newer version of PHP Magic Quotes will be removed, it is recommended that do not use Magic Quotes.  Here i create two function MyInput  and MyOutput to handle magic quotes, addslashes and stripslashes.</p>
<pre>function MyInput($str)
{
$str = trim($str);
if(get_magic_quotes_runtime())
{
return $str;
}
return addslashes($str);
}

function MyOutput($str)
{
$str = trim($str);
if(get_magic_quotes_runtime())
{
return stripslashes($str);
}
return $str;
}</pre>
<p>In above code i use get_magic_quotes_runtime function to check  if magic quotes are set to on or off.</p>
<pre>
$a = MyInput($_GET[‘data’];
</pre>
<p>Here is my version of handling magic quotes, if this code is still need improvement then please leave a message below.</p>
 ]]></content:encoded>
			<wfw:commentRss>http://www.ikrazzy.com/when-to-use-php-addslashes-and-stripslashes/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Making of Tohle Classifieds Site</title>
		<link>http://www.ikrazzy.com/making-of-tohle-classifieds-site/</link>
		<comments>http://www.ikrazzy.com/making-of-tohle-classifieds-site/#comments</comments>
		<pubDate>Thu, 05 Apr 2012 15:02:19 +0000</pubDate>
		<dc:creator>anna</dc:creator>
				<category><![CDATA[All Topics]]></category>

		<guid isPermaLink="false">http://www.ikrazzy.com/?p=5400</guid>
		<description><![CDATA[Recently, I have developed a website Tohle.com and today I am sharing my experience in developing this website. It’s a classified site similar to CRAIGSLIST, QUICKR, LOCANTO and OLX. All these web sites are different way of working and have &#8230; <a href="http://www.ikrazzy.com/making-of-tohle-classifieds-site/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[ <p>Recently, I have developed a website <a href="http://www.tohle.com">Tohle.com</a> and today I am sharing my experience in developing this website. It’s a classified site similar to CRAIGSLIST, QUICKR, LOCANTO and OLX. All these web sites are different way of working and have a great user interface.<span id="more-5400"></span></p>
<p>The classifieds sites are designed to target the local community.  So, whenever we open classifieds website. They asked to choose the city or country based on your location and once you choose the location the visitor is redirect to selected option. Like whenever we open OLX.com from INDIA, it will ask “are you from INDIA?”  If you select INDIA it will redirect you to OLX.IN.  See below picture.</p>
<p><a href="http://www.ikrazzy.com/wp-content/uploads/2012/04/redirect.jpg"><img class="aligncenter size-full wp-image-5401" title="redirect" src="http://www.ikrazzy.com/wp-content/uploads/2012/04/redirect.jpg" alt="Redirect" width="919" height="538" /></a></p>
<p>All these great websites has invested money to buy multiple domains and sub domains. For example like OLX.com have OLX.IN, OLX.CO.UK, CHICAGO.OLX.COM, and NEWYORK.OLX.COM and so on.</p>
<p><strong>The IDEA</strong></p>
<p>The whole idea of designing of Tohle.com is to cover each and every city of the world. Whenever visitor opens my website, it will open in their location and don’t ask for choosing city or country. Visitor post free classified without any registration</p>
<p><strong>The Beginning</strong></p>
<p>I have only one domain and don’t have money to invest to buy domains and sub domains for each city and country.  This is my first problem when I decide to design Tohle.com. I want to cover each city of the world on Tohle.com. But, have no database for each city of world. After hunting for free city database on internet, I don’t get any good solutions.</p>
<p><strong>IPINFODB</strong></p>
<p>IPINFODB.COM provides free Geo location tools for IP location, API, database and fraud detection tools. Thanks to IPINFODB, IPINFODB is the exact thing I am looking for. With the help of IPINFODB API, I am able to deduct visitor location and if the location is new for my database, it is saved in our database and website redirect to visitor geo location. Currently Tohle.com has more than 400 cities and 75 countries.</p>
<p><strong>Auto Registration</strong></p>
<p>I don’t want any type of registration on TOHLE.COM, but it is required to minimize SPAM.  I decide to user get auto registration whenever visitor made a free classified posting and auto mail is sent to user with their login details.</p>
<p><strong>SPAM</strong></p>
<p>The biggest challenge in running a classified website is handling SPAM. I have tried to add some tricks to handle spam, but failed. Currently each of TOHLE.COM posting is reviewed and published only if it valid post.</p>
 ]]></content:encoded>
			<wfw:commentRss>http://www.ikrazzy.com/making-of-tohle-classifieds-site/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PHP reusable MySql Connection Class</title>
		<link>http://www.ikrazzy.com/php-reusable-mysql-connection-class/</link>
		<comments>http://www.ikrazzy.com/php-reusable-mysql-connection-class/#comments</comments>
		<pubDate>Tue, 03 Apr 2012 18:42:21 +0000</pubDate>
		<dc:creator>anna</dc:creator>
				<category><![CDATA[All Topics]]></category>

		<guid isPermaLink="false">http://www.ikrazzy.com/?p=5386</guid>
		<description><![CDATA[Whenever i code in PHP and MySql, i use object oriented method.  Today i am sharing the basic class that will handle all the connectivity features like connect, selecting database, closing connection, begin the transaction, commit, rollback, result set and &#8230; <a href="http://www.ikrazzy.com/php-reusable-mysql-connection-class/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[ <p>Whenever i code in PHP and MySql, i use object oriented method.  Today i am sharing the basic class that will handle all the connectivity features like connect, selecting database, closing connection, begin the transaction, commit, rollback, result set and affected rows after mysql insert, delete and update commands.<span id="more-5386"></span></p>
<p>In this example first i create the <strong>class</strong> called MySqlConnection with a member variable  called connection.</p>
<pre><em>class MySqlConnection</em>
<em>{</em>
<em>      var $connection</em>
<em>}</em></pre>
<p>Next step, i defined a constructor function with a same name of class MySqlConnection with four parameters i.e. host, user, password and database name.</p>
<pre>function MySqlConnection($host=HOST, $user=USER, $pass=PASS,$db=DB)
{
	$this-&gt;connection=mysql_connect($host,$user,$pass);
	if(!$this-&gt;connection)
	{
		die("Error in Connection" . mysql_error());
	}
	if(!mysql_select_db($db,$this-&gt;connection))
	{
		die("Error to select database".mysql_error());
	}
}</pre>
<p>See in constructor function, i have taken the variable HOST, USER, PASS and DB are the constant variable defined by PHP define, which defined a named constant.</p>
<p>Now we can defined all member functions like Close, Begin, Commit, Rollback, Rows and CheckSql.</p>
<pre>function Close()
{
	mysql_close($this-&gt;connection);
	$this-&gt;con = null;
}
function Begin()
{
	mysql_query("start transaction");
	mysql_query("begin");
}
function Commit()
{
	mysql_query("commit");
}
function Rollback()
{
	mysql_query("rollback");
}

function Rows(&amp;$result)
{
	if(!$result)
	{
		echo "Technical Error ! Try Again!!!";
		return false;
	}
        else if(mysql_num_rows($result)&lt;=0)
        {
               return false;
        }
        else
        {
          return true;
        }
}
function CheckSql()
{
    return mysql_affected_rows();
}</pre>
<p>Once your MySqlConnection is defined, using this class is easy. we just want to create an object of this class.</p>
<pre>$DB = new MySqlConnection();</pre>
<p>To close the connection just call its member function Close.</p>
<pre>$DB-&gt;Close();</pre>
<p>To begin the transaction</p>
<pre>$DB-&gt;Begin();</pre>
<p>To commit or rollback</p>
<pre>$DB-&gt;Commit(); or $DB-&gt;Rollback</pre>
<p>To check if mysql_query return any records</p>
<pre>$DB-&gt;Rows($result);</pre>
<p>To Check if mysql query affect the record using insert, delete and update</p>
<pre>$DB-&gt;CheckSql();</pre>
<p>If you like the above code or suggest better way to redesign the MySqlConnection, please leave a message below.</p>
<p>&nbsp;</p>
 ]]></content:encoded>
			<wfw:commentRss>http://www.ikrazzy.com/php-reusable-mysql-connection-class/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Sync your desktop time to Internet time server</title>
		<link>http://www.ikrazzy.com/how-to-sync-your-desktop-time-to-internet-time-server/</link>
		<comments>http://www.ikrazzy.com/how-to-sync-your-desktop-time-to-internet-time-server/#comments</comments>
		<pubDate>Tue, 28 Feb 2012 04:45:55 +0000</pubDate>
		<dc:creator>anna</dc:creator>
				<category><![CDATA[All Topics]]></category>

		<guid isPermaLink="false">http://www.ikrazzy.com/?p=5233</guid>
		<description><![CDATA[In windows operating system you can easily sync your computer clock with internet time server. This will keep your computer clock accurate and your clock is updated once a week and needs to be connected to the Internet for the &#8230; <a href="http://www.ikrazzy.com/how-to-sync-your-desktop-time-to-internet-time-server/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[ <p>In windows operating system you can easily sync your computer clock with internet time server. This will keep your computer clock accurate and your clock is updated once a week and needs to be connected to the Internet for the synchronization.<span id="more-5233"></span></p>
<p>Here are steps to sync your clock with internet time server</p>
<ol>
<li>Open date and time by clicking on time in task bar.</li>
<li>Click on internet and then change settings</li>
<li>Click on &#8220;Automatically synchronize with an Internet time server&#8221;, select a time server.<br />
<a href="http://www.ikrazzy.com/wp-content/uploads/2012/02/sync-time-internet-time-server.jpg"><img class="aligncenter size-full wp-image-5234" title="sync-time-internet-time-server" src="http://www.ikrazzy.com/wp-content/uploads/2012/02/sync-time-internet-time-server.jpg" alt="Sync time with internet time server" width="443" height="261" /></a></li>
<li>Click OK to save.</li>
</ol>
 ]]></content:encoded>
			<wfw:commentRss>http://www.ikrazzy.com/how-to-sync-your-desktop-time-to-internet-time-server/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to check javascript error in chrome?</title>
		<link>http://www.ikrazzy.com/how-to-check-javascript-error-in-chrome/</link>
		<comments>http://www.ikrazzy.com/how-to-check-javascript-error-in-chrome/#comments</comments>
		<pubDate>Tue, 28 Feb 2012 04:27:54 +0000</pubDate>
		<dc:creator>anna</dc:creator>
				<category><![CDATA[All Topics]]></category>

		<guid isPermaLink="false">http://www.ikrazzy.com/?p=5229</guid>
		<description><![CDATA[I remember that whenever there is an error in JavaScript code, older version of internet explorer show me the yellow icon in the status bar to indicate that there is an error in JavaScript code. But in chrome if the JavaScript code is not &#8230; <a href="http://www.ikrazzy.com/how-to-check-javascript-error-in-chrome/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[ <p>I remember that whenever there is an error in JavaScript code, older version of internet explorer show me the yellow icon in the status bar to indicate that there is an error in JavaScript code. But in chrome if the JavaScript code is not working then nothing happen and there is no status bar like in previous version of internet explorer show us.<span id="more-5229"></span></p>
<p>I tried the below sample code in internet explorer and chrome and the result is unexpected.</p>
<p>&#8212;Code Begin&#8212;</p>
<p>&lt;html&gt;<br />
&lt;head&gt;<br />
&lt;title&gt;Testing Javascript Error in Browser&lt;/title&gt;<br />
&lt;script language=&#8221;javascript&#8221;&gt;<br />
function generateError()<br />
{<br />
var a= 25;<br />
var b = a.value;<br />
var c= a/b;<br />
alert(&#8220;The value of c is&#8221; + a.v);</p>
<p>generateError();<br />
&lt;/script&gt;</p>
<p>&lt;/head&gt;<br />
&lt;body&gt;</p>
<p>&lt;p&gt;This is demo to show errors in chrome&lt;/p&gt;<br />
&lt;/body&gt;<br />
&lt;/html&gt;</p>
<p>&#8212;- Code End&#8212;-</p>
<p>Here the result in Internet Explorer, where it show nothing, no error.</p>
<p><a href="http://www.ikrazzy.com/wp-content/uploads/2012/02/ie-javascript-error.jpg"><img class="alignleft size-full wp-image-5230" title="ie-javascript-error" src="http://www.ikrazzy.com/wp-content/uploads/2012/02/ie-javascript-error.jpg" alt="Internet Explorer Javascript Error" width="587" height="367" /></a><br />
<br clear="all" /><br />
But to see the JavaScript error in Chrome, you can open JavaScript console (shortcut: Ctrl+Shift+J) from wrench tool and check the error. Here is result of above code running in Chrome:</p>
<p><a href="http://www.ikrazzy.com/wp-content/uploads/2012/02/chrome-javascript-error.jpg"><img class="alignleft size-full wp-image-5231" title="chrome-javascript-error" src="http://www.ikrazzy.com/wp-content/uploads/2012/02/chrome-javascript-error.jpg" alt="Chrome Javascript Error" width="890" height="551" /></a></p>
 ]]></content:encoded>
			<wfw:commentRss>http://www.ikrazzy.com/how-to-check-javascript-error-in-chrome/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to swap value of variables without using third variable?</title>
		<link>http://www.ikrazzy.com/how-to-swap-value-of-variables-without-using-third-variable/</link>
		<comments>http://www.ikrazzy.com/how-to-swap-value-of-variables-without-using-third-variable/#comments</comments>
		<pubDate>Mon, 27 Feb 2012 07:27:16 +0000</pubDate>
		<dc:creator>anna</dc:creator>
				<category><![CDATA[All Topics]]></category>

		<guid isPermaLink="false">http://www.ikrazzy.com/?p=5226</guid>
		<description><![CDATA[This is very common question asked in interview to programmer, how to swap value of variables without using the third variables? As we know, it is easy to swap two variables with the help of the third variables (see example &#8230; <a href="http://www.ikrazzy.com/how-to-swap-value-of-variables-without-using-third-variable/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[ <p>This is very common question asked in interview to programmer, how to swap value of variables without using the third variables?<span id="more-5226"></span></p>
<p>As we know, it is easy to swap two variables with the help of the third variables (see example in C language)</p>
<p><strong>Example to swap values with the help of third variable</strong>:</p>
<p>void main()<br />
{<br />
int a, b, c;<br />
a=5;<br />
b=10;<br />
printf(&#8220;Value of a: %d \nValue of b: %d&#8221;, a, b);<br />
c=a;<br />
a=b;<br />
b=c;<br />
printf(&#8220;Value of a: %d \nValue of b: %d&#8221;, a, b);<br />
}</p>
<p>In above example, The value of &#8220;a&#8221; is 5 and value of &#8220;b&#8221; is 10. Now we are using the variable &#8220;c&#8221; to store the value of a (c=a;), in next line we overwrite the variable &#8220;a&#8221; with the value of &#8220;b&#8221; and save the value of &#8220;c&#8221; which store the value of &#8220;a&#8221; in variable &#8220;b&#8221;.</p>
<p><strong>Example to swap values without using third variable</strong>:</p>
<p>void main()<br />
{<br />
int a, b;<br />
a=6;<br />
b=12;<br />
printf(&#8220;Value of a: %d \nValue of b: %d&#8221;, a, b);<br />
a=a+b;<br />
b=a-b;<br />
a=a-b;<br />
printf(&#8220;Value of a: %d \nValue of b: %d&#8221;, a, b);<br />
}</p>
<p>In this example, there is no third variable, we are using some calculation to swap the variables. First we add the both variable in &#8220;a&#8221; (a=a+b) i.e. a=18, then deduct the second variable with total value (b = a-b) i.e. b = 6, then deduct again from a to b (a=a-b) i.e. a=18-6  which is twelve;</p>
 ]]></content:encoded>
			<wfw:commentRss>http://www.ikrazzy.com/how-to-swap-value-of-variables-without-using-third-variable/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Tohla Hidden Smileys</title>
		<link>http://www.ikrazzy.com/tohla-hidden-smileys/</link>
		<comments>http://www.ikrazzy.com/tohla-hidden-smileys/#comments</comments>
		<pubDate>Sat, 25 Feb 2012 03:15:04 +0000</pubDate>
		<dc:creator>anna</dc:creator>
				<category><![CDATA[All Topics]]></category>

		<guid isPermaLink="false">http://www.ikrazzy.com/?p=5176</guid>
		<description><![CDATA[Tohla.com is a &#8220;stranger chat&#8221; website, where you can chat with strangers by just clicking on green button.  I have notice there are smileys available which look like yahoo or skype smileys and but the interested things is hidden smileys. &#8230; <a href="http://www.ikrazzy.com/tohla-hidden-smileys/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[ <p><a title="Chat with strangers" href="http://www.tohla.com" target="_blank">Tohla.com</a> is a &#8220;stranger chat&#8221; website, where you can chat with strangers by just clicking on green button.  I have notice there are smileys available which look like yahoo or skype smileys and but the interested things is hidden smileys.<span id="more-5176"></span> I found some secret or hidden smilyes by accident typing of text in message box.  Then i tried some more combination of text. Here are the list of code for hidden smileys on Tohla:</p>
<ol>
<li>(se1) &#8211; Girl saying hello</li>
<li>(se2) &#8211; Punjab Bhangda</li>
<li>(se3) &#8211; Boy kissing Girl</li>
<li>(se4)</li>
<li>(se5)</li>
<li>(se6)</li>
<li>(se7) &#8211; Spiderman dancing</li>
<li>(se8)</li>
<li>(se9)</li>
<li>(se10)</li>
<li>(se11) &#8211; Girl Dancing</li>
</ol>
<p>Here are the screen shot of above smileys code</p>
<p><a href="http://www.ikrazzy.com/wp-content/uploads/2012/02/tohla.com_.jpg"><img class="alignleft size-full wp-image-5177" title="tohla.com" src="http://www.ikrazzy.com/wp-content/uploads/2012/02/tohla.com_.jpg" alt="Tohla Hidden Smileys" width="486" height="578" /></a></p>
<p>More Smileys</p>
<p><a href="http://www.ikrazzy.com/wp-content/uploads/2012/02/tohla.com_.1.jpg"><img class="alignleft size-full wp-image-5178" title="tohla.com.1" src="http://www.ikrazzy.com/wp-content/uploads/2012/02/tohla.com_.1.jpg" alt="Tohla Hidden Smileys" width="416" height="605" /></a></p>
<p><a href="http://www.ikrazzy.com/wp-content/uploads/2012/02/tohla.com_.2.jpg"><img class="alignleft size-full wp-image-5179" title="tohla.com.2" src="http://www.ikrazzy.com/wp-content/uploads/2012/02/tohla.com_.2.jpg" alt="Tohla Hidden Smileys" width="396" height="605" /></a></p>
 ]]></content:encoded>
			<wfw:commentRss>http://www.ikrazzy.com/tohla-hidden-smileys/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What is Autofill Forms Add-on</title>
		<link>http://www.ikrazzy.com/what-is-autofill-forms-add-on/</link>
		<comments>http://www.ikrazzy.com/what-is-autofill-forms-add-on/#comments</comments>
		<pubDate>Tue, 10 Jan 2012 13:06:46 +0000</pubDate>
		<dc:creator>ashwani</dc:creator>
				<category><![CDATA[How To]]></category>

		<guid isPermaLink="false">http://www.ikrazzy.com/?p=4535</guid>
		<description><![CDATA[Sometimes, it is very irritating to fill the same information in web form again and again. There is built in functionality in browsers like Internet explorer, Firefox and in Chrome, but with limited options like Name, Email and Credit Card &#8230; <a href="http://www.ikrazzy.com/what-is-autofill-forms-add-on/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[ <p>Sometimes, it is very irritating to fill the same information in web form again and again. There is built in functionality in browsers like Internet explorer, Firefox and in Chrome, but with limited options like Name, Email and Credit Card information etc. One cannot add custom information in the built in functionality. So, there are tools to handle this like Roboform and Autofill Add-ons.  I like Firefox Add-on “Autofill” because it give me more options where as you have to buy Roboform and install on your system.<br />
<span id="more-4535"></span></p>
<h2>What is Autofill Forms Add-on?<strong><br />
</strong></h2>
<p>Autofill Forms enables you to fill out web forms with one click or a keyboard shortcut.<strong></strong></p>
<h2><a href="http://www.ikrazzy.com/wp-content/uploads/2012/01/autofill-form1.png"><img class="aligncenter size-full wp-image-4536" title="autofill form1" src="http://www.ikrazzy.com/wp-content/uploads/2012/01/autofill-form1.png" alt="autofill form1" width="717" height="538" /></a></h2>
<h2>How to install auto fill form?</h2>
<p>Open the Mozilla Firefox Browser and click to add-ons option, In add-ons window and go to search box and search for “autofill forms”.  This will show search result of add-ons.  You can see the Autofill Forms add-ons, click to install of auto fill add-ons.  After installation auto fill,  Mozilla Firefox restart automatically .</p>
<h2><a href="http://www.ikrazzy.com/wp-content/uploads/2012/01/autofill-form2.png"><img class="aligncenter size-full wp-image-4537" title="autofill form2" src="http://www.ikrazzy.com/wp-content/uploads/2012/01/autofill-form2.png" alt="autofill form2" width="717" height="538" /></a></h2>
<h2>How to fill web form using auto fill forms?</h2>
<p style="text-align: center;"><a href="http://www.ikrazzy.com/wp-content/uploads/2012/01/setting-autofill.png"><img class="aligncenter size-full wp-image-4538" title="setting autofill" src="http://www.ikrazzy.com/wp-content/uploads/2012/01/setting-autofill.png" alt="setting autofill" width="717" height="538" /></a></p>
<p>You can create profile in Autofill Forms in order to fill web forms.  First create profile by clicking on Pencil Icon and open settings. Now you can enter profile name and add autofill name and values like</p>
<p><strong>Name:</strong> &#8211; in this box  fill name of value tag . eg:- username,</p>
<p><strong>value :-</strong>in this box fill data who fill in form.<strong></strong></p>
<p style="text-align: center;"><a href="http://www.ikrazzy.com/wp-content/uploads/2012/01/autofill-form4.png"><img class="aligncenter size-full wp-image-4539" title="autofill form4" src="http://www.ikrazzy.com/wp-content/uploads/2012/01/autofill-form4.png" alt="autofill form4" width="717" height="538" /></a></p>
<p>You can also apply rules on AutoFill parameters</p>
<p>Once your profile is created, open the web form and simply click on pencil to fill the form. You can create multiple profiles in AutoFill forms.</p>
 ]]></content:encoded>
			<wfw:commentRss>http://www.ikrazzy.com/what-is-autofill-forms-add-on/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to take back up of your websites</title>
		<link>http://www.ikrazzy.com/how-to-take-back-up-of-your-websites/</link>
		<comments>http://www.ikrazzy.com/how-to-take-back-up-of-your-websites/#comments</comments>
		<pubDate>Tue, 10 Jan 2012 08:36:46 +0000</pubDate>
		<dc:creator>ashwani</dc:creator>
				<category><![CDATA[How To]]></category>

		<guid isPermaLink="false">http://www.ikrazzy.com/?p=4467</guid>
		<description><![CDATA[Nobody is happy when website data is lost due to technical reasons, you must take regular backup of your website. Now, question is how to take BACKUP of your website. Below are the easy steps to take BACKUP. How to &#8230; <a href="http://www.ikrazzy.com/how-to-take-back-up-of-your-websites/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[ <p><a href="http://www.ikrazzy.com/wp-content/uploads/2012/01/FTP_logo.png"><img class="alignleft size-full wp-image-4473" title="FTP_logo" src="http://www.ikrazzy.com/wp-content/uploads/2012/01/FTP_logo.png" alt="FTP_logo" width="85" height="85" /></a>Nobody is happy <strong>when website data is lost</strong> due to technical reasons, you must take regular backup of your website. Now, question is <strong>how to take BACKUP of your website</strong>. Below are the <strong>easy steps</strong> to take BACKUP.<span id="more-4467"></span></p>
<h2>How to take back up of your websites</h2>
<p>First of all you can download <strong>FTP client software</strong> like cuteFTP, Ipswitch FTP or you can buy Ipswitch FTP.</p>
<p>The below example of FTP is given on Ipswitch FTP software. Now install the Ipswitch FTP software on your computer.</p>
<h2>Requirement to connect your FTP Server</h2>
<p>You need the information hostname or website name, username and password.</p>
<h2>How to make connection using Ipswtich FTP</h2>
<p>Open the Ipswtch FTP software and click on “connect” button after it choose “connection wizard”. It will ask for hostname, username and password.  You can see another window, now type site name and then click on next button.</p>
<p style="text-align: center;"><a href="http://www.ikrazzy.com/wp-content/uploads/2012/01/site-name.jpg"><img class="aligncenter size-full wp-image-4468" title="site name" src="http://www.ikrazzy.com/wp-content/uploads/2012/01/site-name.jpg" alt="site name" width="687" height="348" /></a></p>
<p>Now type a server name or hostname or FTP server name and click on next button.</p>
<p style="text-align: center;"><a href="http://www.ikrazzy.com/wp-content/uploads/2012/01/server-address.jpg"><img class="aligncenter size-full wp-image-4469" title="server address" src="http://www.ikrazzy.com/wp-content/uploads/2012/01/server-address.jpg" alt="server address" width="686" height="347" /></a></p>
<p>In window type user name and password and click on next button.</p>
<p style="text-align: center;"><a href="http://www.ikrazzy.com/wp-content/uploads/2012/01/user-name-and-password.jpg"><img class="aligncenter size-full wp-image-4470" title="user name and password" src="http://www.ikrazzy.com/wp-content/uploads/2012/01/user-name-and-password.jpg" alt="user name and password" width="685" height="351" /></a></p>
<p>Next screen will ask for connection type like FTP or SFTP.</p>
<p style="text-align: center;"><a href="http://www.ikrazzy.com/wp-content/uploads/2012/01/connection-type.jpg"><img class="aligncenter size-full wp-image-4471" title="connection type" src="http://www.ikrazzy.com/wp-content/uploads/2012/01/connection-type.jpg" alt="connection type" width="685" height="347" /></a></p>
<p>Next screen will ask to connect to ftp site and close the connection wizard.</p>
<p style="text-align: center;"><a href="http://www.ikrazzy.com/wp-content/uploads/2012/01/finish.jpg"><img class="aligncenter size-full wp-image-4472" title="finish" src="http://www.ikrazzy.com/wp-content/uploads/2012/01/finish.jpg" alt="finish" width="684" height="345" /></a></p>
<p>You can select the files and click on download button to take backup of your website.</p>
 ]]></content:encoded>
			<wfw:commentRss>http://www.ikrazzy.com/how-to-take-back-up-of-your-websites/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Image Search Engines Part &#8211; II</title>
		<link>http://www.ikrazzy.com/image-search-engines-part-ii/</link>
		<comments>http://www.ikrazzy.com/image-search-engines-part-ii/#comments</comments>
		<pubDate>Thu, 05 Jan 2012 09:29:45 +0000</pubDate>
		<dc:creator>ashwani</dc:creator>
				<category><![CDATA[How To]]></category>

		<guid isPermaLink="false">http://www.ikrazzy.com/?p=4287</guid>
		<description><![CDATA[As I told you in the previous post about the Image Search Engine that Google is not only an option to search images. Here are we continue the other option for the Image Search Engine&#8217;s. Image Search Engines Top Pictures Image &#8230; <a href="http://www.ikrazzy.com/image-search-engines-part-ii/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[ <p>As I told you in the <a title="Image Search Engine" href="http://www.ikrazzy.com/image-search-engines/" target="_blank">previous post</a> about the Image Search Engine that Google is not only an option to search images. Here are we continue the other option for the Image Search Engine&#8217;s.<br />
<span id="more-4287"></span></p>
<h2>Image Search Engines</h2>
<h3>Top Pictures Image Search</h3>
<p><span style="text-decoration: underline;"><a title="Top Pictures Image Search" href="http://en.topictures.com" target="_blank">Top Pictures Image Search</a></span> - &#8220;Image search made easy &#8211; all top image search engines in one place. Images, clip arts, visuals&#8221;.</p>
<p style="text-align: center;"><a href="http://www.ikrazzy.com/wp-content/uploads/2012/01/Top-Pictures-Image-Search.jpg"><img class="aligncenter size-full wp-image-4288" title="Top Pictures Image Search" src="http://www.ikrazzy.com/wp-content/uploads/2012/01/Top-Pictures-Image-Search.jpg" alt="Top Pictures Image Search" width="689" height="561" /></a></p>
<h3 style="text-align: left;">SXC Image Search</h3>
<p><span style="text-decoration: underline;"><a title="SXC Image Search" href="http://www.sxc.hu" target="_blank">SXC Image Search</a></span> - &#8220;stock photography community &#8211; browse our huge gallery for high quality stock photos or share yours with others&#8221;.</p>
<p><a href="http://www.ikrazzy.com/wp-content/uploads/2012/01/SXC-Image-Search.jpg"><img class="aligncenter size-full wp-image-4289" title="SXC Image Search" src="http://www.ikrazzy.com/wp-content/uploads/2012/01/SXC-Image-Search.jpg" alt="SXC Image Search" width="780" height="471" /></a></p>
<h3>FreeFoto Image Search</h3>
<p><a title="FreeFoto Image Search" href="http://www.freefoto.com" target="_blank">FreeFoto Image Search</a> - &#8220;FreeFoto.com is the largest collections of free photographs for non-commercial use on the Internet&#8221;.</p>
<p><a href="http://www.ikrazzy.com/wp-content/uploads/2012/01/FreeFoto-Image-Search.jpg"><img class="aligncenter size-full wp-image-4290" title="FreeFoto Image Search" src="http://www.ikrazzy.com/wp-content/uploads/2012/01/FreeFoto-Image-Search.jpg" alt="FreeFoto Image Search" width="767" height="523" /></a></p>
<h3>GOgraph Image Search</h3>
<p><span style="text-decoration: underline;"><a title="GOgraph Image Search" href="http://www.gograph.com/" target="_blank">GOgraph Image Search</a></span> &#8211; &#8220;Using simple keywords, <em>GoGraph</em> allows you to quickly locate icons, animated GIFs, photographs, Clip Art, Wallpapers and Interfaces. <em>GoGraph</em> makes it easier&#8221;.</p>
<p style="text-align: left;"><a href="http://www.ikrazzy.com/wp-content/uploads/2012/01/GOgraph-Image-Search.jpg"><img class="size-full wp-image-4291" title="GOgraph Image Search" src="http://www.ikrazzy.com/wp-content/uploads/2012/01/GOgraph-Image-Search.jpg" alt="GOgraph Image Search" width="944" height="399" /></a></p>
<h3 style="text-align: left;">Everystockphoto Image Search</h3>
<p style="text-align: left;"><span style="text-decoration: underline;"><a title="Everystockphoto Image Search" href="http://www.everystockphoto.com/" target="_blank">Everystockphoto Image Search</a></span> &#8211; &#8220;Everystockphoto.com is a search engine for free stock photos, offering community features to the stock&#8221;.</p>
<p style="text-align: center;"><a href="http://www.ikrazzy.com/wp-content/uploads/2012/01/Everystockphoto-Image-Search.jpg"><img class="aligncenter size-full wp-image-4292" title="Everystockphoto Image Search" src="http://www.ikrazzy.com/wp-content/uploads/2012/01/Everystockphoto-Image-Search.jpg" alt="Everystockphoto Image Search" width="860" height="499" /></a></p>
<h3 style="text-align: left;">Websohots Image Search</h3>
<p style="text-align: left;"><span style="text-decoration: underline;"><a title="Websohots Image Search" href="http://www.webshots.com" target="_blank">Websohots Image Search</a></span> &#8211; &#8220;The best wallpaper and screensaver photography available. Free stunning wallpapers of amazing professional photos&#8221;.</p>
<p style="text-align: left;"><a href="http://www.ikrazzy.com/wp-content/uploads/2012/01/Webshots-Image-Search.jpg"><img class="aligncenter size-full wp-image-4293" title="Webshots Image Search" src="http://www.ikrazzy.com/wp-content/uploads/2012/01/Webshots-Image-Search.jpg" alt="Webshots Image Search" width="768" height="423" /></a></p>
<h3 style="text-align: left;">SmugMug Image Search</h3>
<p style="text-align: left;"><span style="text-decoration: underline;"><a title="SmugMug Image Search " href="http://www.smugmug.com/" target="_blank">SmugMug Image Search</a></span> - &#8220;Billions of happy photos, millions of passionate customers. Gorgeous online photo sharing. Protect your priceless memories. Create beautiful prints &amp; gifts&#8221;.</p>
<p style="text-align: center;"><a href="http://www.ikrazzy.com/wp-content/uploads/2012/01/SmugMug-Image-Search.jpg"><img class="aligncenter size-full wp-image-4294" title="SmugMug Image Search" src="http://www.ikrazzy.com/wp-content/uploads/2012/01/SmugMug-Image-Search.jpg" alt="SmugMug Image Search" width="677" height="547" /></a></p>
<p style="text-align: left;">Mamma Image Search</p>
<p style="text-align: left;"><span style="text-decoration: underline;"><a title="Mamma Image Search" href="http://www.mamma.com/" target="_blank">Mamma Image Search</a></span> &#8211; &#8220;Mamma.com is a global Meta search engine. It provides extensive web search and fetches results from top search engines&#8221;.</p>
<p style="text-align: left;"><a href="http://www.ikrazzy.com/wp-content/uploads/2012/01/Mamma-Image-Search.jpg"><img class="aligncenter size-full wp-image-4295" title="Mamma Image Search" src="http://www.ikrazzy.com/wp-content/uploads/2012/01/Mamma-Image-Search.jpg" alt="Mamma Image Search" width="841" height="515" /></a></p>
<h3 style="text-align: left;">Ixquick Image Search</h3>
<p style="text-align: left;"><span style="text-decoration: underline;"><a title="Ixquick Image Search" href="https://www.ixquick.com/" target="_blank">Ixquick Image Search</a></span> &#8211; &#8220;Ixquick search engine provides <em>search</em> results from over ten best search engines in full privacy. Search anonymously with Ixquick Search Engine&#8221;!</p>
<p style="text-align: center;"><a href="http://www.ikrazzy.com/wp-content/uploads/2012/01/Ixquick-Image-Search.jpg"><img class="aligncenter size-full wp-image-4296" title="Ixquick Image Search" src="http://www.ikrazzy.com/wp-content/uploads/2012/01/Ixquick-Image-Search.jpg" alt="Ixquick Image Search" width="810" height="514" /></a></p>
 ]]></content:encoded>
			<wfw:commentRss>http://www.ikrazzy.com/image-search-engines-part-ii/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

