Search found 2 matches

by parvez mahmud
Fri May 30, 2008 3:12 am
Forum: PHP - Code
Topic: unable to read file from network folder \\myfolder\fi\a.xx
Replies: 2
Views: 406

Re: unable to read file from network folder \\myfolder\fi\a.xx

class ExcelWrite{ private $excel; private $wkb; private $sheet; private $cell; function OpenFile($fname){ $this->excel = new COM("excel.application"); //Keep Excel invisible $this->excel->Visible = 1; //Create a new workbook //$wkb = $excel->Workbooks->Add(); $this->excel->DisplayAlerts = ...
by parvez mahmud
Thu May 29, 2008 6:08 am
Forum: PHP - Code
Topic: unable to read file from network folder \\myfolder\fi\a.xx
Replies: 2
Views: 406

unable to read file from network folder \\myfolder\fi\a.xx

I have written a php script that read excel file ,write something on it and save as the file using a specific format.The script work fine in local machine.But when tried to the excel file from network folder for instance \\myroot\\template\\a.xls the scrips fails.I've used COM to access excel file.C...