Many people wish to change their IP address for many different reasons. Whether it’s changing it due to you being banned from a site or due to constant flooding or spam you’re being the victim of. I’ll show you how to change your IP Address in less than one minute!
- To release and renew your IP address:
Go to “Start > Run” and type “cmd” (without quotation marks), then select “OK”
- Type “ipconfig /release” (without quotation marks) and press “Enter”
- Once the prompt returns, type “ipconfig /renew” (without quotation marks), then hit “Enter,”
- Last, type “exit” (without quotation marks) then press “Enter” to close the window.
- Congrats, you now have a new IP address!
if (isset($var)) {
echo “the var is set, and equals $var. It may be empty though.”;
}
http://www.php.net/isset
isset() will tell you is a varaible has been defined. This can bite some
users, because it will return true even if the varable has an empty
value. Look at empty() as well. Sometimes you’ll want to use one rather
than the other. Note that even “0″ and 0 are considered empty. Read more…
If you visit Asp.net Ajax Forum, you will find hundreds of request on File Upload Control that it does not give Ajax version of the page when it is placed in an UpdatePanel. Certainly, it is not possible, as the XMLHTTPRequest object that is used internally to post the form does not support file upload. In this post I will show you how to create Ajax like version of the file upload. The trick is very simple, I will use an Iframe to upload the file so the whole page does not get refreshed and when the post is in progress it will show a dummy progress. The following shows you the screenshots of the solutions: Read more…
Put the following code at the top of your page.
<?
$URL="http://www.yourdomain.com";
header ("Location: $URL");
?>
Owning a website has become something mandatory in this technologically advanced world. Unlike the olden days when only countable number of businesses has websites, today each and every business available in this planet owns a website. As a matter of fact websites are not only for businesses. The advancements in technology and the knowledge of people out there about the Internet has paved way for the personal websites too. There are many website scripts and these out there that can be used to develop website with only little programming knowledge. Let your choice be creating a website with the help of these templates or getting the web design done through a professional company, the steps involved in creating a website are the same. Just keep on reading the article to know about the steps involved in creating a website and the factors to be considered in each step. Read more…
The internet has opened up multiple windows for the welfare of mankind. Not only we are now able to access any site at just our fingertips, we can also get the product or service of our preference instantly. Not only it has helped us, the users, the web has proven to be equally beneficial for online business owners who can brand their products well, distribute them in real time and earn great margins. Therefore, having a user-friendly and easily navigable site has become a necessary part of any online business activity. Website developers have understood this fact well and hence they leave no stone unturned while developing websites for their clients. They develop websites based on the most reliable web platforms so that clients are satisfied. Flash is one of the heavily used web site design platforms that’s used on a large scale globally by designers. The number of independent flash web site design solution providers has also increased significantly currently. Read more…

Wishing all a joyful new year 2010
Although JavaScript provides a bunch of methods for getting and setting parts of a date object, it lacks a simple way to format dates and times according to a user-specified mask. There are a few scripts out there which provide this functionality, but I’ve never seen one that worked well for me… Most are needlessly bulky or slow, tie in unrelated functionality, use complicated mask syntaxes that more or less require you to read the documentation every time you want to use them, or don’t account for special cases like escaping mask characters within the generated string.
When choosing which special mask characters to use for my JavaScript date formatter, I looked at PHP’s date function and ColdFusion’s discrete dateFormat and timeFormat functions. PHP uses a crazy mix of letters (to me at least, since I’m not a PHP programmer) to represent various date entities, and while I’ll probably never memorize the full list, it does offer the advantages that you can apply both date and time formatting with one function, and that none of the special characters overlap (unlike ColdFusion where m and mm mean different things depending on whether you’re dealing with dates or times). On the other hand, ColdFusion uses very easy to remember special characters for masks. Read more…