Po continua dando erro: Warning: Cannot modify header information - headers already sent by (output started at C:\xampp\htdocs\project\IOF.php:1) in C:\xampp\htdocs\project\IOF.php on line 5 <?php ob_start(); // It will be called downloaded.pdf header('Content-Disposition:attachment;filename="IOF.doc"'); $string = explode("/", $_SERVER['REQUEST_URI']); $string2 = $string[count($string)-1]; $mysqli = new mysqli("localhost","root","","eficiencia"); $result = $mysqli->query("SELECT * FROM cliente WHERE id = $string2 "); while ($cliente = $result->fetch_object()) { $nome = $cliente->nome; $cpf = $cliente->cpf; $endereco = $cliente->endereco; $bairro = $cliente->bairro; $cep = $cliente->cep; $cidade = $cliente->cidade; $uf = $cliente->UF; $celular = $clinte->celular; $telefone = $cliente->telefone; } ob_end_flush(); ?>