Posts

Showing posts from June, 2013

How to checked all checkbox by on click on one checkbox via jquery?

How to checked all checkbox by on click on one checkbox via jquery? download jquery file from http://jquery.com/ and save into your folder. Note: Do not give online path of on your file otherwise this code will not work,  download jquery file form server and save it in your folder Now simple copy and paste this code in your file <script src="yourSiteUrl/js/jquery.min.js"></script> // Change this yourSiteUrl from your site url <script> function markall() { var AllDay = $("#select_all").is(":checked") ? "true" : "false";     if(AllDay=='true')     {         $('.clsNoborder').attr('checked',true);     } else {         $('.clsNoborder').attr('checked',false);     } }; </script> <div> <input type="checkbox" id="select_all" name="select_all" onclick="markall();"/>: check all </div> <div>  <input typ

How to check that date is today and yesterday in php?

How to check that date is today and yesterday in php? Use this function for get today and yesterday function get_day_name ( $ time ) { $date = date('d/m/Y', $time);             if($date == date('d/m/Y')) {             $time_since = 'Today';             } else if($date == date('d/m/Y',now() - (24 * 60 * 60))) {             $time_since = 'Yesterday';             }else             {             $time_since = 'Today';             } return $time_since; }