How To Shorten Longs URL’s

There are many good url shortening tools on the market today as seen in this video. Personally I have been using Link.ws which also gives me a few more bells and whistels such as Pixel tracking which is great for my Facebook campaigns. Check out Link.ws link shortener here.

PHP File Download Script

In this article am going to explain you how to create PHP file downloader to download any files from webserver to local machine. This application works mainly on the header of the PHP. This type of file download script I have used in most of my web application. When you want to download any file … Read more

How to get system Mac Address in PHP

You can view demo and download how get system Mac Address using PHP: // Turn on output buffering ob_start(); //Get the ipconfig details using system commond system(‘ipconfig /all’); // Capture the output into a variable $mycom=ob_get_contents(); // Clean (erase) the output buffer ob_clean(); $findme = “Physical”; //Search the “Physical” | Find the position of Physical … Read more