<html>
<head>
<title><?=$_SERVER['HTTP_HOST'];?></title>
<link rel="shortcut icon" type="image/ico" href="http://www.quijost.com/favicon.ico">
<meta content="text/html;charset=utf-8" http-equiv="Content-Type">
<style type="text/css">
.dir{list-style-image:url(http://quijost.com/img/dir.png);list-style-type:square;}
.file{list-style-image:url(http://quijost.com/img/file.png);list-style-type:square;}
a:link,a:visited{color:#4D5A26;text-decoration:none;}
</style>
<script type="text/javascript">
function copiar_hora()
{
var valor = document.getElementById("temporizador").value;
document.getElementById("temp_copiado").value = valor;
}
function nuevo_ajax()
{
var xmlhttp=false;
try
{
xmlhttp = new ActiveXObject("Msxml2.XMLHTTP");
}
catch (e)
{
try
{
xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
}
catch (E)
{
xmlhttp = false;
}
}
if (!xmlhttp && typeof XMLHttpRequest!='undefined')
{
xmlhttp = new XMLHttpRequest();
}
return xmlhttp;
}
var seg = 0;
function timer()
{
seg++;
ajax=nuevo_ajax();
ajax.open("GET", "script_hora.php",true);
ajax.onreadystatechange=function()
{
if (ajax.readyState==4)
{
document.getElementById("temporizador").innerHTML = ajax.responseText;
document.getElementById("temp_copiado").value = seg;
}
}
ajax.send(null)
setTimeout('timer();',1000);
}
</script>
</head>
<body style="background-color:#A8D324;margin:0px;padding:0px" onLoad="setTimeout('timer();',1000);">
<div style="background:url(http://quijost.com/foro/Themes/core/images/catbg.jpg) repeat-x scroll 0 0 #B7CF6F;color:#FFFFFF;padding-left:10px;padding-right:10px;height:120px;">
<a title="quijost.com :: El hospedaje de origen manchego" href="http://www.quijost.com" style="text-decoration:none">
<img title="quijost.com :: El hospedaje de origen manchego" alt="quijost.com :: El hospedaje de origen manchego" src="http://www.quijost.com/img/logo.png" id="logo" border="0" />
<div style="margin-top: -26px; margin-left: 105px; font-size: 10px; color: #4D5A26" id="slogan">El hospedaje de origen manchego.</div>
</a>
</div>
<div id="content" style="padding:15px">
<div id="subcontent" style="font-size:12px">
<br>
<textarea id="temporizador" style="cursor:default; border:transparent; background-color:transparent; font-size:18px; font-weight:bold; cursor:default; text-align:center; resize:none; height:30px; width:100px;"> 0 </textarea>
<br>
<input type=submit name=copy value=Copiar onmousedown="copiar_hora()">
<br>
<textarea id="temp_copiado" style="cursor:default; border:transparent; background-color:transparent; font-size:18px; font-weight:bold; cursor:default; text-align:center; resize:none; height:30px; width:100px;"> 0 </textarea>
<br>
</div>
</div>
</body>
</html>
<?
$fecha_actual = localtime(time());
echo time()- mktime(0, 0, 0, $fecha_actual[4]+1, $fecha_actual[3], 1900+$fecha_actual[5]);
?>
<?php $fecha_actual = localtime(time()); echo time()- mktime(0, 0, 0, $fecha_actual[4]+1, $fecha_actual[3], 1900+$fecha_actual[5]);?>
<?php echo time();?>
<script>
window.addEvent('domready', function()
{
function copyHour()
{
$('temporizador').set('text', $('temp_copiado').get('text'))
}
var seg = 0
function timer()
{
seg++;
new Request({
'url' : 'script_hora.php',
onSuccess: function(response)
{
$('temporizador').set('text', response);
$('temp_copiado').set('text', seg)
},
}
)
}
setTimeout('timer()', 1000);
})
</script>
<script>
window.addEvent('domready', function()
{
$('botonCopy').addEvent(
'click',
function()
{
$('temp_copiado').set('text', $('temporizador').get('text'));
}
);
function timer()
{
new Request({
'url' : 'script_hora.php',
onSuccess: function(response)
{
$('temporizador').set('text', response);
}
});
}
setTimeout('timer()', 1000);
});
</script>
<div id="content" style="padding:15px">
<div id="subcontent" style="font-size:12px">
<br>
<textarea id="temporizador" style="cursor:default; border:transparent; background-color:transparent; font-size:18px; font-weight:bold; cursor:default; text-align:center; resize:none; height:30px; width:100px;"> 0 </textarea>
<br>
<input id="botonCopy" type=submit name=copy value=Copiar>
<br>
<textarea id="temp_copiado" style="cursor:default; border:transparent; background-color:transparent; font-size:18px; font-weight:bold; cursor:default; text-align:center; resize:none; height:30px; width:100px;"> 0 </textarea>
<br>
</div>
</div>
<script src="/ruta_al_archivo/mootools-core-1.4.5-full-compat-yc.js"></script><?php $current_time = time();$current_year = date('Y', $current_time);$current_day = date('d', $current_time);$current_month = date('n', $current_time);$day_reset = mktime(0, 0, 0, $current_month, $current_day, $current_year);$day_seconds = $current_time - $day_reset;echo $day_seconds;
<?phpdate_default_timezone_set('Europe/Madrid');$current_time = time();$current_year = date('Y', $current_time);$current_day = date('d', $current_time);$current_month = date('n', $current_time);$day_reset = mktime(0, 0, 0, $current_month, $current_day, $current_year);$day_seconds = $current_time - $day_reset;echo $day_seconds;
<html>
<head>
<title><?=$_SERVER['HTTP_HOST'];?></title>
<link rel="shortcut icon" type="image/ico" href="http://www.quijost.com/favicon.ico">
<meta content="text/html;charset=utf-8" http-equiv="Content-Type">
<style type="text/css">
.dir{list-style-image:url(http://quijost.com/img/dir.png);list-style-type:square;}
.file{list-style-image:url(http://quijost.com/img/file.png);list-style-type:square;}
a:link,a:visited{color:#4D5A26;text-decoration:none;}
</style>
<script src="/public_html/mootools-core-1.4.5-full-compat-yc.js">
window.addEvent('domready', function()
{
$('botonCopy').addEvent(
'click',
function()
{
$('temp_copiado').set('text', $('temporizador').get('text'));
}
);
function timer()
{
new Request({
'url' : 'script_hora.php',
onSuccess: function(response)
{
$('temporizador').set('text', response);
}
});
}
setTimeout('timer()', 1000);
});
</script>
</head>
<body style="background-color:#A8D324;margin:0px;padding:0px" onLoad="setTimeout('timer();',1000);">
<div style="background:url(http://quijost.com/foro/Themes/core/images/catbg.jpg) repeat-x scroll 0 0 #B7CF6F;color:#FFFFFF;padding-left:10px;padding-right:10px;height:120px;">
<a title="quijost.com :: El hospedaje de origen manchego" href="http://www.quijost.com" style="text-decoration:none">
<img title="quijost.com :: El hospedaje de origen manchego" alt="quijost.com :: El hospedaje de origen manchego" src="http://www.quijost.com/img/logo.png" id="logo" border="0" />
<div style="margin-top: -26px; margin-left: 105px; font-size: 10px; color: #4D5A26" id="slogan">El hospedaje de origen manchego.</div>
</a>
</div>
<div id="content" style="padding:15px">
<div id="subcontent" style="font-size:12px">
<br>
<textarea id="temporizador" style="cursor:default; border:transparent; background-color:transparent; font-size:18px; font-weight:bold; cursor:default; text-align:center; resize:none; height:30px; width:100px;"> 0 </textarea>
<br>
<input id="botonCopy" type=submit name=copy value=Copiar>
<br>
<textarea id="temp_copiado" style="cursor:default; border:transparent; background-color:transparent; font-size:18px; font-weight:bold; cursor:default; text-align:center; resize:none; height:30px; width:100px;"> 0 </textarea>
<br>
</div>
</div>
</body>
</html>
<script src="/mootools-core-1.4.5-full-compat-yc.js"></script>
<script>
window.addEvent('domready', function()
{
//bla bla
</script>
<html>
<head>
<title><?=$_SERVER['HTTP_HOST'];?></title>
<link rel="shortcut icon" type="image/ico" href="http://www.quijost.com/favicon.ico">
<meta content="text/html;charset=utf-8" http-equiv="Content-Type">
<style type="text/css">
.dir{list-style-image:url(http://quijost.com/img/dir.png);list-style-type:square;}
.file{list-style-image:url(http://quijost.com/img/file.png);list-style-type:square;}
a:link,a:visited{color:#4D5A26;text-decoration:none;}
</style>
<script src="/mootools-core-1.4.5-full-compat-yc.js"></script>
<script>
window.addEvent('domready', function()
{
$('botonCopy').addEvent(
'click',
function()
{
$('temp_copiado').set('text', $('temporizador').get('text'));
}
);
function timer()
{
new Request({
'url' : 'script_hora.php',
onSuccess: function(response)
{
$('temporizador').set('text', response);
}
});
}
setTimeout('timer()', 1000);
});
</script>
</head>
<body style="background-color:#A8D324;margin:0px;padding:0px" onLoad="setTimeout('timer();',1000);">
<div style="background:url(http://quijost.com/foro/Themes/core/images/catbg.jpg) repeat-x scroll 0 0 #B7CF6F;color:#FFFFFF;padding-left:10px;padding-right:10px;height:120px;">
<a title="quijost.com :: El hospedaje de origen manchego" href="http://www.quijost.com" style="text-decoration:none">
<img title="quijost.com :: El hospedaje de origen manchego" alt="quijost.com :: El hospedaje de origen manchego" src="http://www.quijost.com/img/logo.png" id="logo" border="0" />
<div style="margin-top: -26px; margin-left: 105px; font-size: 10px; color: #4D5A26" id="slogan">El hospedaje de origen manchego.</div>
</a>
</div>
<div id="content" style="padding:15px">
<div id="subcontent" style="font-size:12px">
<br>
<textarea id="temporizador" style="cursor:default; border:transparent; background-color:transparent; font-size:18px; font-weight:bold; cursor:default; text-align:center; resize:none; height:30px; width:100px;"> 10 </textarea>
<br>
<input id="botonCopy" type=submit name=copy value=Copiar>
<br>
<textarea id="temp_copiado" style="cursor:default; border:transparent; background-color:transparent; font-size:18px; font-weight:bold; cursor:default; text-align:center; resize:none; height:30px; width:100px;"> 0 </textarea>
<br>
</div>
</div>
</body>
</html>
setTimeout('timer()', 1000);setTimeout('timer', 1000);new Request({ 'url' : 'script_hora.php',
onSuccess: function(response)
{
$('temporizador').set('text', response);
}
});
<html>
<head>
<title><?=$_SERVER['HTTP_HOST'];?></title>
<link rel="shortcut icon" type="image/ico" href="http://www.quijost.com/favicon.ico">
<meta content="text/html;charset=utf-8" http-equiv="Content-Type">
<style type="text/css">
.dir{list-style-image:url(http://quijost.com/img/dir.png);list-style-type:square;}
.file{list-style-image:url(http://quijost.com/img/file.png);list-style-type:square;}
a:link,a:visited{color:#4D5A26;text-decoration:none;}
</style>
<script src="/mootools-core-1.4.5-full-compat-yc.js"></script>
<script>
var seg = 1
function timer()
{
$('temp_copiado').set('text', seg);
seg++;
window.addEvent('domready', function()
{
new Request({
'url' : 'script_hora.php',
onSuccess: function(response)
{
$('temporizador').set('text', response);
}
});
$('botonCopy').addEvent(
'click',
function()
{
$('temp_copiado').set('text', $('temporizador').get('text'));
}
);
});
setTimeout('timer();', 1000);
}
</script>
</head>
<body style="background-color:#A8D324;margin:0px;padding:0px" onLoad="setTimeout('timer();',1000);">
<div style="background:url(http://quijost.com/foro/Themes/core/images/catbg.jpg) repeat-x scroll 0 0 #B7CF6F;color:#FFFFFF;padding-left:10px;padding-right:10px;height:120px;">
<a title="quijost.com :: El hospedaje de origen manchego" href="http://www.quijost.com" style="text-decoration:none">
<img title="quijost.com :: El hospedaje de origen manchego" alt="quijost.com :: El hospedaje de origen manchego" src="http://www.quijost.com/img/logo.png" id="logo" border="0" />
<div style="margin-top: -26px; margin-left: 105px; font-size: 10px; color: #4D5A26" id="slogan">El hospedaje de origen manchego.</div>
</a>
</div>
<div id="content" style="padding:15px">
<div id="subcontent" style="font-size:12px">
<br>
<textarea id="temporizador" style="cursor:default; border:transparent; background-color:transparent; font-size:18px; font-weight:bold; cursor:default; text-align:center; resize:none; height:30px; width:100px;"> 10 </textarea>
<br>
<input id="botonCopy" type=submit name=copy value=Copiar>
<br>
<textarea id="temp_copiado" style="cursor:default; border:transparent; background-color:transparent; font-size:18px; font-weight:bold; cursor:default; text-align:center; resize:none; height:30px; width:100px;"> 0 </textarea>
<br>
</div>
</div>
</body>
</html>
<script src="/mootools-core-1.4.5-full-compat-yc.js"></script>
<script>
var seg = 1
function timer()
{
$('temp_copiado').set('text', seg)
seg++
}
window.addEvent('domready', function()
{
$('botonCopy').addEvent(
'click',
function()
{
$('temp_copiado').set('text', $('temporizador').get('text'))
}
);
new Request({
'url' : 'script_hora.php',
onSuccess: function(response)
{
$('temporizador').set('text', response)
}
})
setTimeout('timer', 1000)
})
</script><script src="/mootools-core-1.4.5-full-compat-yc.js"></script>
<script>
var seg = 1
function timer()
{
$('temp_copiado').set('text', seg)
seg++
}
window.addEvent('domready', function()
{
$('botonCopy').addEvent(
'click',
function()
{
$('temp_copiado').set('text', $('temporizador').get('text'))
}
);
new Request({
'url' : 'script_hora.php',
onSuccess: function(response)
{
$('temporizador').set('text', response)
}
}).send()
setTimeout('timer', 1000)
})
</script><html>
<head>
<title><?=$_SERVER['HTTP_HOST'];?></title>
<link rel="shortcut icon" type="image/ico" href="http://www.quijost.com/favicon.ico">
<meta content="text/html;charset=utf-8" http-equiv="Content-Type">
<style type="text/css">
.dir{list-style-image:url(http://quijost.com/img/dir.png);list-style-type:square;}
.file{list-style-image:url(http://quijost.com/img/file.png);list-style-type:square;}
a:link,a:visited{color:#4D5A26;text-decoration:none;}
</style>
<script src="/mootools-core-1.4.5-full-compat-yc.js"></script>
<script>
function timer()
{
window.addEvent('domready', function()
{
new Request({
'url' : '/script_hora.php',
onSuccess: function(response)
{
$('temp').set('text', response);
},
}).send();
$('button_copy').addEvent(
'click',
function()
{
$('temp_copied').set('text', $('temp').get('text'));
}
);
});
setTimeout('timer();', 1000);
}
</script>
</head>
<body style="background-color:#A8D324;margin:0px;padding:0px" onLoad="setTimeout('timer();',1000);">
<div style="background:url(http://quijost.com/foro/Themes/core/images/catbg.jpg) repeat-x scroll 0 0 #B7CF6F;color:#FFFFFF;padding-left:10px;padding-right:10px;height:120px;">
<a title="quijost.com :: El hospedaje de origen manchego" href="http://www.quijost.com" style="text-decoration:none">
<img title="quijost.com :: El hospedaje de origen manchego" alt="quijost.com :: El hospedaje de origen manchego" src="http://www.quijost.com/img/logo.png" id="logo" border="0" />
<div style="margin-top: -26px; margin-left: 105px; font-size: 10px; color: #4D5A26" id="slogan">El hospedaje de origen manchego.</div>
</a>
</div>
<div id="content" style="padding:15px">
<div id="subcontent" style="font-size:12px">
<br>
<textarea id="temp" style="cursor:default; border:transparent; background-color:transparent; font-size:18px; font-weight:bold; cursor:default; text-align:center; resize:none; height:30px; width:100px;"> 10 </textarea>
<br>
<input id="button_copy" type=submit name=copy value=Copiar>
<br>
<textarea id="temp_copied" style="cursor:default; border:transparent; background-color:transparent; font-size:18px; font-weight:bold; cursor:default; text-align:center; resize:none; height:30px; width:100px;"> 0 </textarea>
<br>
</div>
</div>
</body>
</html>