Posted by IchBin on 08/18/06 03:41
Dikkie Dik wrote:
> Does the nessi class code start with <?php ? It may start with <? while
> short tags are not configured in php.ini
>
> 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;
To instantiate the class Nessi I think it should look like this:
$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 ...
>>
--
--
Thanks in Advance...
IchBin, Pocono Lake, Pa, USA http://weconsultants.phpnet.us
'If there is one, Knowledge is the "Fountain of Youth"'
-William E. Taylor, Regular Guy (1952-)
[Back to original message]
|