List/Grid Scripts Subscribe RSS feed of category Scripts

Calculate week in PHP

Calculate week in PHP

Use this script to calculate a week in PHP <?php $date = mktime(0, 0, 0, 01,27, 2011); $week = (int)date(‘W’, $date); ?>

Remove admin color scheme picker from profile

Remove admin color scheme picker from profile

Add this script to the functions.php of your wordpress theme will remove the admin color scheme picker from the profile page. if(is_admin()){ remove_action(“admin_color_scheme_picker”, “admin_color_scheme_picker”); }

How to check date if date is between two date

How to check date if date is between two date

This function the return the true and false if date is exist or not exist. function dateWithin(StartDate,EndDate,CheckDate) { var b,e,c; s = Date.parse(StartDate); e = Date.parse(EndDate); c = Date.parse(CheckDate); if((c… Read more »

How to make a dynamic tree structure menu

How to make a dynamic tree structure menu

To make dynamic tree structure menu, We have to make to functions one is for “Parent Menu” and second for “Child Menu or Sub Child Menu”. $query = “select *… Read more »

How to fetch current date and time using Javascript

How to fetch current date and time using Javascript

JavaScript Current Time Clock With the newly created Date Object we can show the current date and time, now only a variable which store the current date and time. We… Read more »

© 2012 Sumit Bansal. All rights reserved. XHTML / CSS Valid.