Posts
 
Reputation
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
~125 People Reached
Favorite Forums
Favorite Tags
php x 1

1 Posted Topic

Member Avatar for Kparas

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) { …

Member Avatar for Thamaraikani
0
125

The End.