General

What is Privacy policy Sample Privacy policy for website

What is Privacy policy? A privacy Policy is a statement that declares a firm’s or website policy on collecting and releasing a information about the visitors. This document explains how an organization handles any customer, client or employee information gathered in its operations. Business privacy policy – sample template This privacy policy sets out how [business …

What is Privacy policy Sample Privacy policy for websiteRead More »

What is disclaimer page? Sample disclaimer page for website

What is disclaimer Page? A disclaimer is a very useful way of protecting you from any action taken against you by a third party. It states the limitation liability for the use of your website and the information it contains. Sample disclaimer Page for website The information contained in this website is for general information …

What is disclaimer page? Sample disclaimer page for websiteRead More »

essential and important JavaScript functions required in website

These are the following important java script functions used in a website. Please note that you may use jquery for all functions Progressive pop ups for Social networking <script> // create social networking pop-ups (function() { // link selector and pop-up window size var Config = { Link: “a.share”, Width: 500, Height: 500 }; // …

essential and important JavaScript functions required in websiteRead More »

How to include Captcha in php program / script

sample captcha code //captcha.php <?php session_start(); if(isset($_REQUEST[‘submit’])) { if(isset($_REQUEST[“captcha”])&&$_REQUEST[“captcha”]!=””&&$_SESSION[“code”]==$_REQUEST[“captcha”]) { echo “Correct Code Entered”; //Do you stuff } else { echo “wrong code try again”; } } ?> <html> <body> <form action=”captcha.php” method=”post”> Enter Image Text <input name=”captcha” type=”text”> <img src=”captcha_img.php” /><br> <a href=”captcha.php”>Refresh</a> <input name=”submit” type=”submit” value=”Submit”> </form> </body> </html> Here is a php …

How to include Captcha in php program / scriptRead More »

How to install, setup and configure Wamp server

WAMP WAMP is an acronym, where W stands for Windows, A stands for Apache, M stands for MYSQL,  P stands for PHP, which refers to set of open source application combined with microsoft windows, which are commonly used for web server environment. Step 1:Installation First have to download the latest version of WAMP server from http://www.wampserver.com/en/download.php . You …

How to install, setup and configure Wamp serverRead More »