需要一个小的基本帮助,我正在使用用户在表单中提交的参数动态创建一个 XML 文件。提交表单后,我将跳转到 PHP 代码,并且我想提供一个 href 链接以下载/显示创建的 XML 文件。
这是我的示例代码:
<?php
$outputForm = 1;
if(isset($_POST['submit'])){
$outputForm = 0
//Function to generate XML file which works as expected, so that XML file is there
createXML($folderPath, $albumName, $dateOfEntry);
//My XML file is named as albumName.xml and stored in the folderPath as specified
echo '<a href = "' . $folderPath . $albumName. '.xml' . '">XML FILE</a>';
}
else{
$outputForm = 1;
}
if($outputForm == 1)
{
//Here follows my input form
<?php
}
?>
FYI:
$folderPath = 'c:/htdocs/output/';
Therefore:
$folderPath . $albumName = 'c:/htdocs/output/jessi';
In this example xml file name:
jessi.xml
我可以在输出中看到 href 链接,但是当我单击它时它什么也没做。当我将光标移到“XML 文件”链接上时,我还可以看到 xml 文件的完整路径。
任何想法如何在 php 脚本中嵌入 href 链接以下载/显示 XML 文件。
谢谢