How to Create Multiple Excel sheet in php ?

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • krissh
    New Member
    • Apr 2007
    • 1

    How to Create Multiple Excel sheet in php ?

    I know How Excel sheet in php .But wat i want is how to create Multiple sheets in Excel . This is the code for creating one excel sheet

    Code:
    <?php
    header('Content-type:application/ms-xls');  
    header("Content-Disposition: attachment; filename=Emp_Skillgap.xls");
    
    header("Pragma: no-cache");
    header("Expires: 0");
    
    
    ?>

    How to Create Multiple Excel sheet in php ?
    Friends plz help me .......
    Last edited by Atli; Oct 5 '10, 09:49 AM.
  • Laura Ioana

    #2
    Try this one

    Try using PHPExcel, it's the easiest to install and it works.

    Comment

    • vjayis
      New Member
      • Mar 2008
      • 134

      #3
      i found this link helpful and i developed worksheeets using this..

      check it out.

      Comment

      Working...