From: Peter B. <re...@f2...> - 2001-06-03 13:02:14
|
At 07:21 PM 6/3/01 +0800, you wrote: >my error is not the problem any path....????? >if you have any problem with any path in Win32, please tell me, >I will correct is as soon as possible.... This may be no use whatsoever, but to get decent error messages out of the sablotron parser, add the following function to your code: function xsl_error($parser, $code, $level, $errors) { echo "$parser [$code]: $level, <p>"; var_dump($errors); } And then where you have $processor = xslt_create(); Add the following line: xslt_set_error_handler($processor, "xsl_error"); or if already present then modify it to that form, where $processor is the name of the variable with the xslt_create() handle HTH! Peter. -oOo- Maple Design - web design, hosting, domain names http://www.mapledesign.co.uk -oOo- |