Runciitis Posted December 19, 2003 Report Share Posted December 19, 2003 Kā panākt lai apstiprinot PHP dormu tā ierakstītu Exel Dokumentājaunā rindā apstiprinātos datus? :unsure: Link to comment Share on other sites More sharing options...
Venom Posted December 19, 2003 Report Share Posted December 19, 2003 (edited) Griezies pie COM objekta (strādā tika uz Win platformas) <?php //kaut kur saglabātais ierakstu skaits $row $xc = new COM("excel.application"); if (!$xc) exit; $xc->Visible = 1; //te kaut kas līdzīgs $xc->Worksheets('Sheet1')->Range('A'.$row)->Value=$value1_from_php; $xc->Worksheets('Sheet1')->Range('B'.$row)->Value=$value2_from_php; $xc->Save(); $xc->Quit(); $xc->Release(); $xc = null; ?> NB: vieglāk saglabāt datu bāzē un pēc tam dzīt ārā CSV Edited December 19, 2003 by Venom Link to comment Share on other sites More sharing options...
cuuu Posted December 24, 2003 Report Share Posted December 24, 2003 vai glabaat txt failaa atdalot ar komatiem un ar paplashinaajumu xls. Verot valjaa eksels teiks, ka tas nav gluzhi vinja formaats, bet tomeer nolasiis kaa pieklaajas Link to comment Share on other sites More sharing options...
Aleksejs Posted December 24, 2003 Report Share Posted December 24, 2003 Ja nemaldos, tad glabājot ar komatiem atdalītu failu ar paplašinājumu csv, ekselis vispār neprotestēs. Par to bija rakstīts iekš http://www.php-mag.net/phppdf/ Link to comment Share on other sites More sharing options...
Recommended Posts