jeboy Posted March 27, 2008 Share Posted March 27, 2008 How can I export mysql data to multiple excel sheet? e.g. MySQL data name address event peter manila event 1 bruce makati event 1 clark rizal event 2 john pasig event 2 Excel sheets Sheet 1 (event 1) peter manila event 1 bruce makati event 1 Sheet 2 (event 2) clark rizal event 2 john pasig event 2 Link to comment https://forums.phpfreaks.com/topic/98078-how-to-export-mysql-data-to-multiple-excel-sheet/ Share on other sites More sharing options...
cooldude832 Posted March 27, 2008 Share Posted March 27, 2008 this is more of a question of .xls file format than a php but basically <?php #create .xls file $q = "Select * from `people`"; $r = mysql_query($q) or die(mysql_error()."<br /><br />".$q); if(mysql_num_rows($r) >0){ #make new sheet in .xls lableled people via fwrite or build fwrite string while($row = mysql_fetch_assoc($r)){ #insert data into the sheet via variable building/fwrite } } $q = "Select * from `event"; $r = mysql_query($q) or die(mysql_error(); #etc. Link to comment https://forums.phpfreaks.com/topic/98078-how-to-export-mysql-data-to-multiple-excel-sheet/#findComment-501801 Share on other sites More sharing options...
jeboy Posted March 28, 2008 Author Share Posted March 28, 2008 Yeah but how can I create a worksheet in excel? I can export simple data from mysql to excel, what I want to do next is to create worksheet in excel. Link to comment https://forums.phpfreaks.com/topic/98078-how-to-export-mysql-data-to-multiple-excel-sheet/#findComment-502691 Share on other sites More sharing options...
ohdang888 Posted March 28, 2008 Share Posted March 28, 2008 phpMYadmin will do this for you.... Link to comment https://forums.phpfreaks.com/topic/98078-how-to-export-mysql-data-to-multiple-excel-sheet/#findComment-502692 Share on other sites More sharing options...
jeboy Posted March 28, 2008 Author Share Posted March 28, 2008 We are developing custom solution, so why are we going to use phpMyAdmin? If that's just the case then we will not post a question Link to comment https://forums.phpfreaks.com/topic/98078-how-to-export-mysql-data-to-multiple-excel-sheet/#findComment-502786 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.