First of all, you do not find a “adbrite vs adsense” comparison here. If you are looking for “adbrite vs adsense” comparison and are in a hurry you are better to leave this article. This post contains my personal thoughts…
Best smartphones/mobile phones under Rs. 5000 and Rs.10000 in India
Yesterday, my uncle who lives in village rang me and asked me to research over feature-rich yet budget mobile phones available in India. Actually he wanted two phones. One under 10000 Rupees, for himself and another under 5000 Rupees for…
jQuery pop up message box sliding from left to right and positioning horizontally at the center
Just wrote a simple sliding box script to make a message box appear sliding from left to the middle of web page. The box appears once a day. The first appearance is logged into a browser cookie, so if user…
Validating php multiple-value checkbox form element with javascript
In php a multiple-value form element such as checkbox is named suffixed with a set of square brackets. For example, My commonly used colors are: <form action=”index.php” name=”myform” method=”post” onsubmit=”return validate_form();”> <input type=”checkbox” name=”colors[]” value=”red” /> <input type=”checkbox” name=”colors[]” value=”green”…
Useful trim prototype (function) in core javascript
Below is the most commonly used trim prototype/function in javascript. Posting for reference. String.prototype.trim = function() { return this.replace(/(^\s*)|(\s*$)/g,””) } You can place the above code (wrapped in <script></script>) inside <header> section of your web page or you can place…
Choosing a business listing directory script written in php
How to Choose a business listing directory script written or coded in PHP programming language I got a new client today who wanted a brand new website equipped with business listing directory feature. According to him, the script should be…
How to update a mysql table with the count of another table while using like statement
While working on a web links directory i wanted to update categories table’s num_listings column with the count of listings under each category. The category id was stored something like this in listings table:
How to create a keyboard shortcut to open an application / program in Windows 7
Following step by step instructions to create a keyboard shortcut to a program in Windows 7.
Template drop down list missing in edit page in wordpress
Last night i installed a new theme to this blog of mine and after setting basic things up when i went to edit my archives page at admin end the Template drop-down in Page Attribute box was missing. Strange. I…
phpMyAdmin PHP Code Injection Exploit attempt on my server
This morning, when i checked my Give Back India site’s access log i found some scripts/setup.php request attempts. In fact, not ‘some’ but hundreds of them. All requests were made targeting phpMyAdmin’ installations on my server. Here are a few…