[snip]
xml_set_element_handler($this->xml_parser, '$this->startElement',
"$this->endElement");
xml_set_character_data_handler($this->xml_parser,
"$this->valueHandler");

I get an error message:

Warning: xml_parse(): Unable to call handler $this->startElement() in
c:\program files\apache group\php\My_includes\Class.xmlTranslator.php on
line 90

Now I presume this is because I am trying to call methods of my class.
[/snip]

Hmmm... I thought you might have read the other class thread. Since the
method is not public you could call it with the :: syntax.

http://www.php.net/manual/en/keyword.paamayim-nekudotayim.php

HTH

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to