Archive

Archive for September, 2009

10 Menus de navegación con jQuery

September 9th, 2009 Jose Robinson No comments

Algunos menus animados y con un estilo llamativo que se puede lograr con la ayuda de jQuery y algunos de sus componentes extra.

FUENTE: 10 incredible JQuery navigation menus.

Categories: webdev Tags: ,

Función PHP para forzar la descarga de archivos

September 9th, 2009 Jose Robinson No comments

El título lo dice todo:

function force_download($file)
{
    if ((isset($file)) && (file_exists($file)))
    {
       header("Content-length: ".filesize($file));
       header('Content-Type: application/octet-stream');
       header('Content-Disposition: attachment; filename="' . $file . '"');
       readfile("$file");
    }
    else
    {
       echo "No se ha seleccionado ningún fichero";
    }
}

FUENTE: 21 Really Useful & Handy PHP Code Snippets

Categories: webdev Tags: ,