Pero tengo un pequeño problema y es que el reloj va 2h atrasado, quizas suene muy noob esto pero sé 0 de php, es posible adelantarle las 2h? si alguien sabe como que me diga porfavor, aqui esta el codigo del reloj:
Código:
Saludos y gracias <?php $date = getdate(); $seconds = $date['seconds']; $minutes = $date['minutes']; $hours = $date['hours']; ?> <script type="text/javascript"> var horas = <?php echo $hours; ?>; minutos = <?php echo $minutes; ?>; segundos = <?php echo $seconds; ?>; function mueveReloj(){ segundos = segundos+1; if(segundos>=60) { segundos=0; minutos = minutos+1; } if(minutos>=60) { minutos=0; horas=horas+1; } if(horas>=24) { horas=0; minutos=0; segundos=0; } var nums = segundos.toString(); var numm = minutos.toString(); var numh = horas.toString(); if(nums.length==1) { if(numm.length==1) { if(numh.length==1) { horaImprimible = "0"+horas +":0"+minutos+":0"+segundos; } } } if(nums.length==1) { if(numm.length==1) { if(numh.length==2) { horaImprimible = horas+":0" + minutos+":0"+segundos; } } } if(nums.length==1) { if(numm.length==2) { if(numh.length==1) { horaImprimible = "0"+horas +":"+minutos+":0"+segundos; } } } if(nums.length==1) { if(numm.length==2) { if(numh.length==2) { horaImprimible = horas +":"+minutos+":0"+segundos; } } } if(nums.length==2) { if(numm.length==1) { if(numh.length==2) { horaImprimible = horas +":0"+minutos+":"+segundos; } } } if(nums.length==2) { if(numm.length==2) { if(numh.length==1) { horaImprimible = "0"+horas +":"+minutos+":"+segundos; } } } if(nums.length==2) { if(numm.length==1) { if(numh.length==1) { horaImprimible = "0"+horas +":0"+minutos+":"+segundos; } } } if(nums.length==2) { if(numm.length==2) { if(numh.length==2) { horaImprimible = horas +":"+minutos+":"+segundos; } } } document.getElementById('timeserver').innerHTML = horaImprimible; setTimeout("mueveReloj()",1000) } </script>