function html_header() { global $language; echo <<<EOT <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en" dir="ltr"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <meta http-equiv="Pragma" content="no-cache" /> <title>Coppermine - {$language['installation']}</title> <link rel="stylesheet" href="css/installer.css" type="text/css" /> <link rel="shortcut icon" href="favicon.ico" /> </head> <body> <div align="center"> <div> <table width="100%" border="0" cellpadding="0" cellspacing="1" class="maintable"> <tr> <td valign="top" style="background-color:#EFEFEF"><img src="images/coppermine-logo.png" width="260" height="60" border="0" alt="" /><br /> </td> </tr> </table> EOT; html_stepper(); }
function html_header() { ?> <!doctype html public "-//W3C//DTD HTML 4.01 Transitional//EN"> <html> <head> <title>Coppermine - <?php echo $install->language['installer']; ?> </title><link type="text/css" rel="stylesheet" href="installer.css"> </head> <body> <div align="center"> <div style="width:600px;"> <table width="100%" border="0" cellpadding="0" cellspacing="1" class="maintable"> <tr> <td valign="top" style="background-color:#EFEFEF"><img src="images/coppermine-logo.png" width="260" height="60" border="0" alt="" /><br /> </td> </tr> </table> <?php html_stepper(); }