php与XML、XSLT、Mysql的结合运用实现代码(2)


*/
//我把它加工成一个XSLT格式的HTML文档
/*
<?xml version="1.0" encoding="gb2312"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="html" version="1.0" encoding="GB2312" indent="yes" />
<xsl:template match="https://www.jb51.net/">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>数据浏览</title>
</head>
<body>
<table cellpadding="0" cellspacing="0" bordercolor="#111111">
<tbody>
<tr>
<td bgcolor="#C0C0C0">代码</td>
<td bgcolor="#C0C0C0">企业名称</td>
<td bgcolor="#C0C0C0">电话</td>
</tr>
<xsl:for-each select="root/result/row">
<tr>
<td> <xsl:value-of select="nsrnm" /></td>
<td> <xsl:value-of select="qymc" /></td>
<td> <xsl:value-of select="qydh" /></td>
</tr>

</xsl:for-each>

</tbody>

</table>
</body>
</html>
</xsl:template>
</xsl:stylesheet>

*/
$htmlFile="browesData.html" ;
$htmlStr = readXsl($htmlFile); //将xslt格式的HTML文档读取到变量中
echo getHtml($data, $htmlStr) ;
//程序结束
?>

您可能感兴趣的文章:

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:http://www.heiqu.com/839160505e6492423f23c97d1d7d2233.html