1 year ago
<?php
function imprimeFecha()
{
$dias =
array('Domingo',
'Lunes',
'Martes',
'Miércoles',
'Jueves',
'Viernes',
'Sábado');
$meses =
array('Enero',
'Febrero',
'Marzo',
'Abril',
'Mayo',
'Junio',
'Julio',
'Agosto',
'Septiembre',
'Octubre',
'Noviembre',
'Diciembre');
}
// Ejemplo: Hoy es Viernes 31 de Octubre del 2008
?>
Paste this in your website: <script type="text/javascript" src="http://www.posteet.com/embed/1348"></script>
1 year ago
Necesario para eliminar el cache del explorador cuando se utiliza ajax para mostrar resultados en un contenedor div
<?
header("Expires: Tue, 01 Jul 2001 06:00:00 GMT");
header("Last-Modified: " .
gmdate("D, d M Y H:i:s") .
" GMT");
header("Cache-Control: no-store, no-cache, must-revalidate");
header("Cache-Control: post-check=0, pre-check=0",
false);
?>
Paste this in your website: <script type="text/javascript" src="http://www.posteet.com/embed/1347"></script>