Ver Mensaje Individual
  #3 (permalink)  
Antiguo 16/04/2013, 14:57
Dark Kronox
 
Fecha de Ingreso: abril-2007
Mensajes: 73
Antigüedad: 17 años
Puntos: 0
Respuesta: Exportar datos a una hoja de Excel

eso es lo que ocupo para exportar los datos a un excel.

Código:
header('Content-type: application/vnd.ms-excel');
//en filename vamos a colocar el nombre con el que el archivo xls sera generado
header("Content-Disposition: attachment; filename=Reporte_Usuario.xls");
header("Pragma: no-cache");
header("Expires: 0");

<!DOCTYPE html PUBLIC “-//W3C//DTD XHTML 1.0 Transitional//EN” “http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd”>
<html xmlns=”http://www.w3.org/1999/xhtml”>
<head>
<meta http-equiv=”Content-Type” content=”text/html; charset=utf-8″ />
<title>Reporte de ventas</title>
</head>

<body>
</body>
Saludos y gracias