Revision: 9509
Updated Code
at December 6, 2008 16:49 by garretjames
Updated Code
function printHeader($title = NULL)
{
$title = $title === NULL ? 'SiteName' : "SiteName - {$title}";
print "<!DOCTYPE html PUBLIC '-//W3C//DTD XHTML 1.1//EN' 'http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd'>
<html xml:lang='en' xmlns='http://www.w3.org/1999/xhtml'>
<head>
<meta name='Description' content='CONTENT' />
<meta http-equiv='Content-Type' content='text/html; charset=iso-8859-1' />
<meta http-equiv='Content-Style-Type' content='text/css' />
<link rel='StyleSheet' href='library/styles/root.css' type='text/css' media='screen' />
<link rel='StyleSheet' href='library/styles/html.css' type='text/css' media='screen' />
<link rel='stylesheet' href='library/styles/menu.css' type='text/css' />";
print "<title>{$title}</title>
</head>
<body>\n";
}
Revision: 9508
Updated Code
at November 10, 2008 19:20 by garretjames
Updated Code
function printHeader($title = NULL)
{
$title = $title === NULL ? 'SiteName' : "SiteName - {$title}";
print "<!DOCTYPE html PUBLIC '-//W3C//DTD XHTML 1.1//EN' 'http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd'>
<html xml:lang='en' xmlns='http://www.w3.org/1999/xhtml'>
<head>
<meta name='Description' content='Helping you raise funds for your community!' />
<meta http-equiv='Content-Type' content='text/html; charset=iso-8859-1' />
<meta http-equiv='Content-Style-Type' content='text/css' />
<link rel='StyleSheet' href='library/styles/root.css' type='text/css' media='screen' />
<link rel='StyleSheet' href='library/styles/html.css' type='text/css' media='screen' />
<link rel='stylesheet' href='library/styles/menu.css' type='text/css' />";
print "<title>{$title}</title>
</head>
<body>\n";
}
Revision: 9507
Initial Code
Initial URL
Initial Description
Initial Title
Initial Tags
Initial Language
at November 10, 2008 19:18 by garretjames
Initial Code
function printHeader($title = NULL)
{
$title = $title === NULL ? 'SiteName' : "SiteName - {$title}";
print "<!DOCTYPE html PUBLIC '-//W3C//DTD XHTML 1.1//EN' 'http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd'>
<html xml:lang='en' xmlns='http://www.w3.org/1999/xhtml'>
<head>
<meta name='Description' content='Helping you raise funds for your community!' />
<meta http-equiv='Content-Type' content='text/html; charset=iso-8859-1' />
<meta http-equiv='Content-Style-Type' content='text/css' />
<link rel='StyleSheet' href='library/styles/root.css' type='text/css' media='screen' />
<link rel='StyleSheet' href='library/styles/html.css' type='text/css' media='screen' />
<link rel='stylesheet' href='library/styles/menu.css' type='text/css' />
print "<title>{$title}</title>
</head>
<body>\n";
}
Initial URL
Initial Description
Initial Title
Print HTML Head
Initial Tags
php, html
Initial Language
PHP