わかりました、私はもう一度戻ってきました:)、しかし新しい問題があります!
ボタンを作成しようとしています。クリックするlocation.href
と、download.phpが実行されます。
コードの魔女は次のとおりです。
<?
ob_start();
require_once 'includes/db.php';
require_once 'includes/init.php';
?>
<?php
$file = "logs/".$_SESSION['username'].".txt";
if (file_exists($file)) {
header('Content-Description: File Transfer');
header('Content-Type: application/octet-stream');
header('Content-Disposition: attachment; filename='.basename($file));
header('Content-Transfer-Encoding: binary');
header('Expires: 0');
header('Cache-Control: must-revalidate');
header('Pragma: public');
header('Content-Length: ' . filesize($file));
ob_clean();
flush();
readfile($file);
exit;
}
?>
私の他のコードは、.txt ファイルをダウンロードするボタンを初期化します。
<?php
if (isset($_POST['clearBtn']))
{
?>
< location.href = 'download.php'>
<?
echo '<div class="nNote nSuccess hideit"><p><strong>SUCCESS: </strong>Logs have been downloaded</p></div>';
}
?>
<div class="widget">
<div class="title"><img src="images/icons/dark/frames.png" alt="" class="titleIcon" /><h6>Logs</h6><form action = "" method="post" class="form">
<input type="submit" style="margin-top: 4px; margin-right:4px;" value="Download Logs" name="clearBtn" class="dblueB logMeIn" />
この部分を機能させるにはどうすればよいですか:
?>
< location.href = 'download.php'>
<?
これに答えることができる人に感謝します。これはおそらく簡単な質問だと思いますが、どこにも答えが見つかりません。ありがとう:)