Jānis S Posted April 18, 2006 Report Share Posted April 18, 2006 Man ir problēmas pulkstenī pāriet no 12h un 24h sistēmu kas ir javascriptā. page.php kods: http://paste.php.lv/3638 clock.js kods http://paste.php.lv/3639 Kas un kurā kodā man ir jaizlabo lai pārietu man uz 24h sistēmu, jo pašā datorā rāda 24h :) es visādi izmeiģinājos, bet tomēr gudrība aptrūkās. Link to comment Share on other sites More sharing options...
GedroX Posted April 18, 2006 Report Share Posted April 18, 2006 (edited) http://php.lv/f/index.php?showtopic=4438 jeb if (intHours == 0) { hours = "12:"; ap = "am."; } else if (intHours < 12) { hours = intHours+":"; ap = "am."; } else if (intHours == 12) { hours = "12:"; ap = "pm."; } else { intHours = intHours - 12 hours = intHours + ":"; ap = "pm."; } aizvieto ar hours = intHours + ':'; ap = ''; P.S. Interesants tev page.php fails :P parse kļūdu nemet laukā? :LOL: Edited April 18, 2006 by GedroX Link to comment Share on other sites More sharing options...
Jānis S Posted April 18, 2006 Author Report Share Posted April 18, 2006 Liels paldies :) Nu es negribēju visu garo PHP kodu kopēt iekšā tāpēc iekopēju tikai daļu no tā visa :) Link to comment Share on other sites More sharing options...
Recommended Posts