Is there a way to download a spreadsheet that is password protected? I found libraries such as PHPExel
but they do not work. Is there any other alternative?
if(isset($_POST["export_excel"]))
{
$sql = "SELECT * FROM Datas ORDER BY ID DESC";
$result = mysqli_query($connect, $sql);
....
....
....
$output .= '</table>';
header("Content-Type: application/xls");
header("Content-Disposition: attachment;
filename= DB".date('Y_m_d').".xls");
echo $output;
}