PHP - How can I write data from a <table></table>
to an excel file using file_put_contents()
?
PHP - How can I write data from a
Asked
Active
Viewed 360 times
-1

EddyTheDove
- 12,979
- 2
- 37
- 45

helper
- 1
-
1Please don't copy paste the question title in the details and that too twice. Write a proper question. – Harsh Wardhan Mar 03 '17 at 10:08
1 Answers
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:

Gerard
- 66
- 6