Alguien podria decirme cual es el fallo, o como lo tengo que hacer??
Adjunto el codigo. Muchas gracias.
Código PHP:
header("Content-Disposition: attachment; filename=factura_servicios.xls");
header('Content-Type: application/msword');
header('Content-Type: application/force-download');
header('Content-Type: application/download');
header('Content-Transfer-Encoding: binary');
header('Pragma: no-cache');
header('Expires: 0');
@set_time_limit(600);
include ('include/funciones_generales.php');
include ('include/db_connect.php');
$tabla.='<html><head></HEAD><body><center><table style="width:700px;" border="1"><tr colspan="3">';
$img="$row[empresa].jpg";
//$tabla.='<table style="height:20px;"><tr><td></td></tr></table>';
$tabla.="<table style='width:700px;' border='0'>
<tr>
<td rowspan='4' colspan='2'><img src='logos/$img' width='320' height='110'></td>
<td style='width:250px;'><b>$empresa[7]</b></td></tr>
<tr>
<td style='width:250px;'><b>CIF: $empresa[1]</b></td></tr>
<tr>
<td style='width:250px;'><b> $empresa[3]</b></td></tr>
<tr><td style='width:250px;'><b> $empresa[5]</b> $empresa[6]</td></tr>
</table>;
";
$tabla.='<table ><tr><td><br><br></td></tr></table>';
$tabla.='</table></center></body></html>';
echo $tabla;
?>