There are so many different ways to get tweets to display on your blog or web page, unfortunately most of these use JavaScript which means that the tweets displayed are not made available to search engines 🙁 Don’t worry; you can also display your latest Twitter tweets using PHP. You can achieve by following very simple functions. …
1. Find your PHP version using phpinfo() function. You should need to know the version when you download the ionCube loaders. x86/ppc/sparc packages are for 32 bit systems; x86-64/ppc64 packages are for 64 bit systems. The Windows non-TS Loaders are for use on a Windows system where a phpinfo() page shows that PHP…
You just have to update the following files: X:\xampp\apache\conf\extra\httpd-vhosts.conf First of all, uncomment the following line to enable name based virtual host on your server’s port 80: NameVirtualHost *:80 Then you can start adding your virtual hosts. The following listing is just a sample, I usually do.I am assuming ,we create a project…
Get live currency rates in PHP & conversion using APIs In the below method, we get live currency rates from Google. This function uses CURL so make sure you have enabled curl extension in php. Google has an inbuilt calculator which can also be used for converting a currency into another.Doing so is really…
The twitter updates are always short – under 140 characters each. Plus, one can post updates and follow her friends using the Twitter website, software on his browser, a mobile phone or instant messages. People aren’t tied to one device. This makes the twitter so popular. It has grown far beyond its microblogging roots to become…
Block access to files using htaccess 1. Block access to .htaccess file Add the following code block to your htaccess file to add an extra layer of security.Any attempts to access the htaccess file will result in a 403 error message.Your first layer of security to protect htaccess files involves permissions via CHMOD to 644.…