This tutorial shows how to track your vistors click using simple php and Ajax To implement the click tracking tool we need to create 2 files: Demo.html: This file contains the html with the links and the Ajax code. clickTracker.php: This... (Continue reading)
Some times when you intergrate your existing wordpress blog with an external website or at times when you go for something like <?php require_once('body.php'); ?> 2.php <?php session_start(); ?> in your webpage, you will be getting a warning stating that... (Continue reading)
In this tutorial we can see how to add a draggable div along with the cursor using simple javascript. Only some simple javascript included and you can just copy and paste it in to a webpage you want the draggable content... (Continue reading)
This is a very simple tutorial on how to show and hide a division tag or Expand and collapse toggle div using simple jquery. <script src=”http://jqueryjs.googlecode.com/files/jquery-1.3.2.min.js” type=”text/javascript”></script> <script type=”text/javascript”> $(document).ready(function(){ $(“#butShowHideSlow”).click(function () { $(“#divShowHideSlow”).toggle(“slow”); }); }); </script> <button id=”butShowHideSlow”>Click Me</button>... (Continue reading)
In this tutorial we will see how to get the query string value using very simple perl CGI script. When we hit a URL from the web browser with a query string say http://mistonline.in/cgi/data.cgi?program=php In which program=php is the query... (Continue reading)