Posted by Jerry Stuckle on 08/18/06 11:56
Mathieu Maes wrote:
> Dikkie Dik wrote:
>
>>Is there something in an errorlog (if that is turned on in php.ini)?
>
>
> all errors are usually logged in a file as well... Nothing in there.
>
> This is the script how I use the class :
> =======
> <pre>
> <?php
> require "nessi.class.php";
> $xml = new Nessi;
> $xml = loadfile(invoice.xml);
> print_r($GLOBALS);
> ?>
> </pre>
> =======
>
> The output of the script is :
> <pre>
>
>
> I really haven't got a clue ...
>
This generally means you have an error in the required file
(nessi.class.php).
Ensure you have all errors enabled and displayed, or check your error
log (often times the server error log) for errors.
I suspect you'll find an error in the class file.
--
==================
Remove the "x" from my email address
Jerry Stuckle
JDS Computer Training Corp.
jstucklex@attglobal.net
==================
Navigation:
[Reply to this message]
|