我创建了一些按钮但是当你点击它们时,它只是打开文件。当我用鼠标点击它时,我想要一个'另存为'功能。目前,当我点击并选择“另存为”时,它会下载一个html文件而不是实际文件。
这是我的代码:
$handle = opendir('mydirectory');
if($handle){
while(($entry = readdir($handle)) !== false){
if($entry != '.' && $entry != '..' && $entry != '.htaccess'){
echo "<button onclick=\"location.href='mydirectory/$entry'\" style=\"background-color: #660000;\"><p style=color:white;>$entry</button><br>";
}
}
closedir($handle);