36 lines
682 B
PHP
36 lines
682 B
PHP
<?php
|
|
|
|
function xml_header()
|
|
{
|
|
header ("content-type: text/xml");
|
|
echo "<?xml version=\"1.0\" encoding=\"UTF-8\"?>";
|
|
}
|
|
function xml_tag_val($tag, $val)
|
|
{
|
|
echo "<".$tag.">".$val."</".$tag.">";
|
|
//echo "<".$tag.">".$val."</".$tag."><br>";
|
|
}
|
|
function xml_tag_sec($tag, $open)
|
|
{
|
|
if ($open) $tok = "<";
|
|
else $tok = "</";
|
|
echo $tok.$tag.">";
|
|
}
|
|
function xhtmlHeaders( $file, $title )
|
|
{
|
|
?>
|
|
<!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">
|
|
<head>
|
|
<style type="text/css">
|
|
body {
|
|
border: 0px solid;
|
|
margin: 0px;
|
|
padding: 0px;
|
|
}
|
|
</style>
|
|
</head>
|
|
<?php
|
|
}
|
|
?>
|