Steps to improve alexa ranking

Alexa is most widely used website to determine the ranking of website. The value of website is better counted with alexa. Alexa also gives toolbar that you can install in your browser e.g in IE and Firefox to get the ranking of websites. These are few steps you can improve your alexa ranking:- Place alexa widget on your blog. Use alexa redirect url for example http://redirect.alexa.com/redirect?itrelease.com [...]

By |2024-03-27T13:04:03+00:00May 18, 2011|Programming|0 Comments

convert local variable to global variable in php

Suppose you have a variable which has same name as declared within the function and outside the function. But that variable has different scope. If the variable is declared within the function then it is called local variable and if it declared outside the function then it is global variable. If we assign/change the value in local variable it does not effect global variable. So we [...]

By |2024-03-27T13:04:04+00:00May 18, 2011|Php Tutorials|0 Comments

Html5 sample syntax

The sample html5 code looks like this:- <!DOCTYPE HTML> <html> <head> <title>My Title goes here</title> </head> <body> My content goes here..... </body> </html> Here the only difference between html 4 and html 5 is doctype. The doctype has not ending tag.

By |2024-03-27T13:04:06+00:00May 16, 2011|Programming|0 Comments

Upload any file using html and php

Today i will explain you how you can upload any file using html and php. I have make one upload folder in which all the uploaded files will be stored. Then i am making index.html and upload.php files. The index.html file looks like this:- <!DOCTYPE HTML> <html> <head> <title>Uploading files</title> </head> <body> <form action="upload.php" method="post" enctype="multipart/form-data"> <label for="file">Filename:</label> <input type="file" name="file" id="file" /> <br /> [...]

By |2024-03-27T13:04:06+00:00May 15, 2011|Php Tutorials|0 Comments

Import, export, restore backup of bookmarks in firefox4

To make backup of your bookmarks there are two options:- Json backup Html backup To make backup of bookmarks first click on firefox menu on top left side of firefox. Then go to bookmarks->Show all bookmarks or you can press Crtl+Shift+B on windows. A new window will appear. Now click on "Import and Backup". If you want to take json backup click on "Backup" [...]

By |2024-03-27T13:04:07+00:00May 15, 2011|Browsers|0 Comments

Difference between static, final and abstract class in java

Let me discuss static, final and abstract class one by one. Abstract class Abstract class An abstract class is that which must be extended. If you use abstract method in a class then that means the class is abstract also so you have to declare that class as abstract. Abstract class behaves as a template. Abstract class can contain static data. Abstract class can not be instantiated. Static [...]

By |2024-03-27T13:04:07+00:00May 14, 2011|Programming|0 Comments

Microsoft has bought skype for $8.5 billion

Today the hot news is that microsoft has bought skype for $8.5 billion. First the option was that the bid may end up between $7 billion to $8 billion. The co-founder of skype janus and niklas with their 14% stake with take in their home $1.19 billion. Before the others buyers of skype were facebook and google. Google has already voice chatting facility so they may [...]

By |2024-03-27T13:04:08+00:00May 10, 2011|Social Network|0 Comments
Go to Top