UniFM/res/temp/php-wml.tpl

24 lines
608 B
Smarty
Raw Normal View History

2018-11-14 19:08:50 +02:00
<?php
Header("Expires: Mon, 26 Jul 1997 05:00:00 GMT");
Header("Cache-Control: no-cache, must-revalidate");
Header("Pragma: no-cache");
Header("Last-Modified: ".gmdate("D, d M Y H:i:s")."GMT");
Header("Cache-Control: post-check=0, pre-check=0", false);
header("Content-type:text/vnd.wap.wml; charset=utf-8");
echo '<?xml version="1.0" encoding="UTF-8"?>';
echo '<!DOCTYPE wml PUBLIC "-//WAPFORUM//DTD WML 1.3//EN" "http://www.wapforum.org/DTD/wml13.dtd">';
echo '<wml>';
echo "\r\n<!-- Comment -->\r\n";
echo '<card id="card1" title="Title">';
echo '<p align="center">';
echo '</p></card></wml>';
?>