Disable right click on web page using jquery
Most webmasters want to protect their blog content from plagiarism. To protect blog content from copying we can do following to things. Disable right click on web page Disable content selection as this...
View ArticleDisable content selection on web page using jquery
In previous article we learned how to prevent our blog content from copying by disabling right click on web page. Now in this article i will show you how to disable content selection on web page using...
View ArticleLinkify all urls in text with php
It is a good idea to convert all urls into links in your web application like contact form, comment forms, chat application etc. To find and replace all urls with their links we will use php...
View Article99webtools now listed in dmoz
Good news! we are now listed in dmoz http://www.dmoz.org/Computers/Internet/Web_Design_and_Development/Authoring/Webmaster_Resources/
View Article10 PHP tips for web developer
PHP widely used for web development. More than 80% websites on internet are built using php. In this article i’ll tell you 10 most useful tips for php. 1. Always Use long open tags When you declare a...
View ArticleGet profile picture from facebook, google, twitter and gravatar
An useful resource for developer that requires profile images from various social network website. In this article you will learn how to get profile picture URL from Facebook, Google, Twitter and...
View ArticleCreate zip archive with php
In php creating zip file is very easy. PHP 5.2 has an inbuilt class ZipArchive to manipulate zip file, if you are using a older version of php then you can install PECL zip on your server. To make this...
View ArticleBlock referrer spam with htaccess
Referrer spam is a technique involves making repeated web site requests using a fake referer URL to the site the spammer wishes to advertise. Now a days I am getting to much referrer spam on 99webtools...
View ArticleCreated wordpress plugin to check backlinks
One more SEO plugin for wordpress user. I have created backlink checker plugin that lets you find list of backlinks pointing to your blog. See http://wordpress.org/plugins/backlink-checker/
View ArticleMake php project translation ready with gettext
I was working on php script that requires translation in multi-language, So I found two ways to make it translation ready with PO and MO files. Here are the two methods to translate a php project using...
View ArticleEnvato affiliate WordPress plugin
An Envato Affiliate WordPress plugin to display envato market place item in WordPress Post and Page with your referral link. This plugin has inbuilt click counter that help to track click on different...
View ArticleLinux copy remote file to local over SSH
Linux has two built in command to copy files between Linux system over ssh. scp (Secure Copy) rsync (Remote Sync) rsync is more powerful then scp because it has options to compress data while transfer...
View ArticleFind number of concurrent Apache connection by IP
Some time web server response very slow due to multiple concurrent connection to Apache. As we know that each web server has different Apache configuration depends upon its hardware (Processor and...
View ArticleTruncate a string in PHP without breaking words
I was working on PHP project that require to get a text from MySQL and display only 50 character. Thus I used php substr function to truncate a text to first 50 character. $text="quick brown fox jumps...
View ArticleHow to import csv file in MySQL database?
In this tutorial I will explain you two methods to import csv file into MySQL database. First this requires a MySQL database with same numbers of column as csv file. Import csv with LOAD DATA INFILE...
View ArticleSimple bash script to backup directory and MySQL database to Dropbox
Backup of important data or website is crucial if a system crash or hard drive failure occurs. There many software are available on internet to backup data. Some of those are paid or not easy to use,...
View Article