ERROR: unable to invoke php's xslt processor"; return; } $root='file://'.$_SERVER['DOCUMENT_ROOT']; $result = xslt_process($xh, $root.$xmlfilename, $root.$xslfilename); if ($result) { header("Content-type: application/ms-excel"); //header("Content-type: application/vnd.ms-excel"); header('Content-Disposition: attachment; filename="'.$GLOBALS['outfile'].'.xls";'); echo $result; } else { echo "

ERROR: unable to transform ".$xmlfilename; echo "
" . xslt_error($xh); } xslt_free($xh); } ?>