00001 <?php 00002 00003 /*************************************************************************** 00004 * Copyright (C) 2007 by Damian Bodde * 00005 * damian@elsw.de * 00006 * * 00007 * This program is free software; you can redistribute it and/or modify * 00008 * it under the terms of the GNU General Public License as published by * 00009 * the Free Software Foundation; either version 2 of the License, or * 00010 * (at your option) any later version. * 00011 * * 00012 * This program is distributed in the hope that it will be useful, * 00013 * but WITHOUT ANY WARRANTY; without even the implied warranty of * 00014 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * 00015 * GNU General Public License for more details. * 00016 * * 00017 * You should have received a copy of the GNU General Public License * 00018 * along with this program; if not, write to the * 00019 * Free Software Foundation, Inc., * 00020 * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * 00021 ***************************************************************************/ 00022 00023 00024 printHeader(); 00025 echo "<h1>Hello World!</h1>\n"; 00026 printFooter(); 00027 00028 function printHeader(){ 00029 echo <<<EOF 00030 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> 00031 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"> 00032 <head> 00033 <meta name="description" content="" /> 00034 <meta name="author" content="Damian Bodde" /> 00035 <meta name="keywords" content="" /> 00036 <title>criminalcity</title> 00037 </head> 00038 <body> 00039 00040 EOF; 00041 } 00042 00043 function printFooter(){ 00044 echo "</body>\n</html>"; 00045 } 00046 00047 ?>
1.4.7