Changeset 69 for www/global.php
- Timestamp:
- Apr 16, 2008, 6:10:43 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
www/global.php
r52 r69 68 68 } 69 69 70 function HumanDate($ Date)70 function HumanDate($Time) 71 71 { 72 $Parts = explode('-',$Date); 72 $Date = explode(' ', $Time); 73 $Parts = explode('-', $Date[0]); 73 74 if($Date != '0000-00-00') return(($Parts[2]*1).'.'.($Parts[1]*1).'.'.$Parts[0]); 74 75 else return(' ');
Note:
See TracChangeset
for help on using the changeset viewer.