hi,

ia have a problem with reading excel documents. Im using a codes from http://sourceforge.net/projects/phpexcelreader and it works well, but...

also I need to export a .xls document, now i creating by

header("Content-Type: application/vnd.ms-excel; charset=windows-1250");
    header("Content-Disposition: attachment; filename=prihlaska-$this->id_zavod.xls");
    header("Pragma: no-cache");
    header("Expires: 0");
    header("Last-Modified: " . gmdate("D,d M YH:i:s") . " GMT" );

and then is <table ...

so, problem is here, I cant read this document. "normal" excel files is a hexadecimal but this is xml... Can anybody help me? Way is maybe to parse the xml, but i think that it will be too hard for me 🙁 Its not simle xml...

Or, create hexadecimal files... but how?

Or something else?

thanks for help

    Write a Reply...