D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
var
/
www
/
html
/
novonote
/
adm
/
Filename :
baixar_contratoPDF.php
back
Copy
<?php session_start(); $arquivo = $_SESSION['pdf_gerado'] ?? null; if (!$arquivo || !file_exists($arquivo)) { echo "❌ Arquivo PDF não encontrado."; exit; } if (ob_get_length()) { ob_end_clean(); } header('Content-Description: File Transfer'); header('Content-Type: application/pdf'); header('Content-Disposition: attachment; filename="' . basename($arquivo) . '"'); header('Expires: 0'); header('Cache-Control: must-revalidate'); header('Pragma: public'); header('Content-Length: ' . filesize($arquivo)); readfile($arquivo); // Redireciona para baixar o DOCX após 1 segundo echo '<script> setTimeout(function() { window.location.href = "http://localhost/novonote/adm/baixar_contratoDocx.php"; }, 1000); </script>'; exit;