Dynamic Content Now Supported by Amazon CloudFront

Hi guys, Now we can able to use amazon cloud front to deliver dynamic content. This new capability gives you a simple, cost-effective way to improve the performance, reliability and global reach of your dynamic websites. Amazon CloudFront works seamlessly with dynamic applications running in Amazon EC2 or your origin running … Read more

3 tips to secure your wordpress using .htaccess

Now a days WordPress cms is very popular among everyone. Because It is very simple to use and install. But when you installing the wordpress, you have to make sure that how safe is your install. Here I am going to share few security tips to your wordpress cms/blog using .htaccess … Read more

Tips to Securing your PHP Application

Now a days PHP Language is very popular among developers to develop large applications like facebook etc. So here I am going to tell how to secure your PHP applications in a simple steps Disabling Remote URLs for File Handling Functions File handling functions like fopen, file_get_contents, and include accept URLs as file parameters … Read more

Top 5 Free PHP & Mysql Cheat Sheets

1. PHP Cheat Sheet  The AddedBytes cheat sheet above covers multiple php topics such as functions list and regular expressions. 2. Blue Shoes – PHP Online Cheat Sheet If you would rather not download a php cheat sheet, BlueShoes has provided an online php cheat sheet available for you to … Read more

Tips to Speed Up your PHP Website/Application

Your website acts as a communication interface between your office/organization and your customers/visitors/users.  Slow loading websites causes users to close the webpage. Slow speed websites are used in google ranking algorithms . So here I am going to tell how can you make your website faster using simple php tips … Read more

Multi Language Unicode support in PHP

Hi guys, Now I am going to tell how to add multi language support for your website Step 1: Create a header with charset utf-8 with the following code and add this code into your header file [php]header(‘Content-Type: text/html; charset=utf-8’);[/php] Step 2: [php] // Create an array of names: $names … Read more

10 Main Features in PHP 6

Now a days PHP 6 is a very popular term among all php developers. Also several books in the market have already written about PHP 6 such as PHP 6 and MySQL 5 for Dynamic Web Sites: Visual QuickPro Guide (3rd Edition) (link). Ten Main Features in PHP 6 are as … Read more

How to Change the Default ‘Admin’ Username in WordPress

Every WordPress installation will create an account with the default Admin username. Being able to change this default username, will give your WordPress admin panel additional security. Change ‘YourNewUsername‘ to your new name: UPDATE wp_users SET user_login = ‘YourNewUsername’ WHERE user_login = ‘Admin’; Please don’t forget to share and subscribe … Read more

Fetch / embed videos from url using PHP and Jquery

Please check my new updated post – Facebook Style embed videos from url – http://w3lessons.info/2013/05/25/facebook-style-youtube-video-vimeo-video-soundcloud-audio-url-expander-with-jquery-php/ In our daily life web developers are facing problem like how to embed videos from url. Here I am going to share How to fetch videos from major sites like youtube, vimeo, dailymotion, yahoom google , … Read more