This option will reset the home page of this site. Restoring any closed widgets or categories.

Reset

Posts Tagged ‘scripts’


Page 5 of 1212345678910NextLast »

Simple Ajax with PHP click tracker

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)

Tagged with:         

Warning: session_start(): Cannot send session cookie headers already sent

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)

Tagged with:     

Adding a draggable div along with the cursor using simple javascript

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)

Tagged with:         

Expand and collapse toggle div using jquery

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)

Tagged with:         

How to get the query string value in perl cgi script

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)

Tagged with:

Page 5 of 1212345678910NextLast »