Hello.
I want Convert Excel sheets to HTML page using only php script .
So please help me
Thanks and Regards
Harish
Convert Excel sheets to HTML page
Moderator: General Moderators
Re: Convert Excel sheets to HTML page
Hi Harish,
Can you convert (or save as) the Excel files into CSV (Comma Separated Values)??
It is nearly the same and Microsoft Excel reads it perfectly.
CSV syntax is very simple: a comma goes to the next column and a line break to the next row:
You can parse that easily with PHP.
If you must read XLS files, try searching php "excel|xls|csv to html|php"
Hope that helps.
Can you convert (or save as) the Excel files into CSV (Comma Separated Values)??
It is nearly the same and Microsoft Excel reads it perfectly.
CSV syntax is very simple: a comma goes to the next column and a line break to the next row:
Code: Select all
a1,b1,c1,d1
a2,b2,c2,d2
...If you must read XLS files, try searching php "excel|xls|csv to html|php"
Hope that helps.