Merhaba, PHP ile excel dosyası oluşturmak için örnek kod aşağıdaki gibidir :
1 2 3 4 5 6 7 8 9 10 11 |
<?php header("Content-Type: application/vnd.ms-excel"); header("Content-Disposition: attachment; filename=deneme.xls"); echo '<table> <tr> <td>Alan 1</td> <td>Alan 2</td> </tr> </table>'; ?> |