我需要知道如何将我的 xsl 转换链接到我的数据库我目前已将其设置为进行 html 转换,但需要将数据插入到数据库中 xslt 是一个仅用于转换的文件,并且在 php 脚本中运行,几天前我在上面看到了一个线程,但忘了保存它,现在我一辈子都找不到关于它的任何东西。xml 是一个提要而不是一个文件这是 xsl 的样子:
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:template match="/">
<xsl:variable name="ref" select="lr_rates/hoel_ref"/>
<xsl:for-each select="//room">
<xsl:variable name="ref" select="ref"/>
<xsl:variable name="type" select="type_description"/>
<xsl:variable name="descr" select="description"/>
<xsl:variable name="avail" select="rooms_available"/>
<xsl:variable name="rate" select="rack_rate"/>
<xsl:variable name="cur" select="rate/requested_currency"/>
</xsl:for-each>
</xsl:template>
</xsl:stylesheet>
那么这就是数据库请求的样子
"DELETE FROM `pt_rooms` WHERE hotel_ref = '$id'";
"INSERT INTO `pt_rooms`(hotel_ref,room_ref,room_type,description,availability,price,currency) VALUES ('$id','$ref','$type','$descr','$avail','$rate','$cur')";
我想我可能需要一个 mysql_connect 语句以及它不是一个应用程序,只是一个 php 脚本中的 singl xsl 如果有人可以链接到一个好的解释