Author: Prabhu Balakrishnan
-
50+ Powerful WordPress Themes from Themeforest
Themeforest has some powerful and stunning wordpress themes with which you can build powerful web portals, you cant imagine with wordpress which can be used for news, magazines, wedding, food, restaurants, church, jobs, travel, ecommerce or personal blogs. These themes have well known features like.. Clean responsive multipurpose theme, Unlimited sliders, 100+ shorcodes, Stylish page…
-
20+ Great code highlighter plugins for WordPress
I have always loved decorating my code in my wordpress blog. Since then i have been in search some of the code highlighter plugins to bring color for the code published in my blog. The easiest way to separate code and add background to highlight the code is styling pre and code tags. This is…
-
20+ Great shortcode plugins to spice up your WordPress site
Shortcodes works like magic in wordpress to spice up your website. Shortcodes brings life to a plain simple blog with colorful buttons, colums, quotes and icons. Most powerful themes comes with built in shortcodes with the theme but if you want, you can use shortcode plugins available to control your blog. Most short code plugins…
-
40+ Great PHP content management systems for your Website
PHP Content management systems (PHP CMS) are customizable plug and play scripts for organizing website content built on top of application frameworks and makes extensive reusable php code running on MySQL/PostgreSQL database powered by PHP. Each is CMS is unique and code simplicity, skeleton, customizing with plugins, snippets to your needs are most important to…
-
10+ Things to do when your server is down!
Is your website down? Are you in panic? Seeing a server down or terrible slowness, is a webmasters nightmare. I have often freaked out in such situations because with high traffic site, you could lose lots of clients, and money, if your site is slow or site down. Very often, when you press the panic…
-
15 Great Tips to save your Adwords advertising dollars!
Adwords is like a double edged sword. On one hand it gets your product reach large audiences online, while on the other it might sting you with your advertising dollars. If you are not careful with campaigns, lots of money gets wasted and may go into drain. Trust me, this is coming from me, having…
-
10+ Great Websites to buy Premium wordpress themes
I am a great fan of wordpress themes and time after time, often i lose track of great sites owned by wordpress theme developers for selling premium wordpress themes. I am a real fan of these high quality theme developer sites, which is why i decided to put up a nice list of theme developer…
-
PHP: Date difference in days between 2 dates
I was struggling to find a bit of code in php to compute the number of days between today and a given date. Here is the code you are after. Just simple use it or use it within a function $today_date = date(‘Y-m-d’); $datediff = round(abs(strtotime($today_date)-strtotime($date))/86400); If you want to use it as a…
-
How to write a VAT invoice?
If you are by chance doing business in UK with EU countries, you cannot escape giving a VAT invoice to your client. At first i didnt know how to write a vat invoice to my clients and had no idea how to do it. Before giving a vat invoice your company must have a VAT…
-
PHP code to filter input against XSS/Injection attacks
Most php coded scripts are vulnerable to many hacks and mailicious code, just because many developers do not write code filtering and sanitizing user inputs, especially in forms using GET and POST. The golden rule is “Never trust user input”. Fortunately, it is very easy to implement the filtering mechanisms to guard against XSS and…