Joined
Last Seen
0 Reputation Points
Unknown Quality Score
No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
0 Endorsements
Ranked #107.65K
1 Posted Topic
Hi, This is the code that i used for converting .csv to .xls...I think this may help you. <?php header("Content-type:application/ms-excel"); header("Content-Disposition:attachment;filename='csv to excel'"); ?> <?php $open = fopen("phpex1.csv", "a+"); //open the csv file echo "<table border='1'>"; echo "<tr><td colspan='15'><h1><center>.csv to .xls</center></h1></td></tr>"; while (($data = fgetcsv($open," ", ",")) !== FALSE) { …
The End.
Thamaraikani