You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

32 lines
698 B
PHP

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

<?php
function xhtml_head()
{
$name = NAME;
$title = func_get_arg(0);
echo <<<XHTML
<!DOCTYPE html PUBLIC "-//WAPFORUM//DTD XHTML Mobile 1.0//EN" "http://www.wapforum.org/DTD/xhtml-mobile10.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>{$title} - {$name}</title>
<link rel="stylesheet" href="./style.css">
</head>
<body>
<div id="header">
我一直在开辟属于我的天空
</div>
XHTML;
}
function xhtml_footer()
{
echo <<<XHTML
<div id="footer">
By<a href="mailto:xiaoqidun@gmail.com">Xiaoqidun@Gmail.Com</a>
</div>
</body>
</html>
XHTML;
}
?>