-1

PHP - How can I write data from a <table></table> to an excel file using file_put_contents()?

EddyTheDove
  • 12,979
  • 2
  • 37
  • 45
helper
  • 1

1 Answers1

0

You have 2 options:

save the spreadsheet as a CSV, then use PHP's built-in CSV functions:

http://php.net/manual/en/function.fgetcsv.php

or use external libraries:

http://phpexcel.codeplex.com/

Gerard
  • 66
  • 6