Codice PHP:
/*
Composes and returns a meta refresh tag like:
<META HTTP-EQUIV="REFRESH" CONTENT="2; URL=http://www.domain.com/home.php?p=0">
*/
function meta_refresh($sec$url$parms)
{
    if(!
$sec)
    {
       
$sec 0;
    }
    
    return 
"<META HTTP-EQUIV=\"REFRESH\" CONTENT=\"$sec; URL=$url?$parms\">";