Hola estimado prueba esto y me dices
Código PHP:
Ver original include("config.php");
//agregue esta sentencia
echo "";
echo "<html>";
echo "<head>";
if (!$db) die("Error al conectar con la base de datos. Ponte en contacto con el programador"); $sql1="select * from clientes where clientes.ID>'3'";
if (!$res1) echo "Ha ocurrido un error al recuperar los clientes";
else
{
echo "<table align='center' border='1'>";
echo "<tr><td colspan='9' align='center'><b> Lista de Socios </b> </td></tr>";
echo "<tr><td><b>Nombre</td><td><b>Apellidos</td><td><b>Usuario</td><td><b>Teléfono</td><td><b>Dirección</td><td><b>Población</td><td><b>Email</td><td><b>Socio</td><td><b>Activado</td></b></tr>";
{
echo "<tr><td>$reg1[1]</td><td>$reg1[2]</td><td>$reg1[3]</td><td>$reg1[5]</td><td>$reg1[6]</td><td>$reg1[7]</td><td>$reg1[8]</td><td>$reg1[9]</td><td>$reg1[10]</td></tr>";
}
echo "</table>";
echo "<a href='./listado.php'>Exportar</a>";
}
echo "</body> ";
echo "</html>";
/********************************************
Set the automatic downloadn section
/********************************************/
header("Content-type: application/vnd.ms-excel"); header("Content-Disposition: attachment; filename=consulta.xls");
echo $reporte;
}