Re: [PHP] XML parsing without the PHP4 XML functions

2001-02-15 Thread Shaun Batterton
Wddx may also be an option. That would allow you to serialize the xml into php variables so that you could use them in your example. But if your provider won't compile xml in, I doubt you'll be able to get wddx. Shaun On Wed, 14 Feb 2001, Stefen Lars wrote: Hello all I have recently been

Re: [PHP] calling static class functions using a function variable

2001-01-18 Thread Shaun Batterton
Well, essentially, a static class method is a method that can be called without any instances of the class. It's just a nice way to group functions for your class. Check out chapter 13 of the php manual: http://www.php.net/manual/en/language.oop.php "Static class methods are apparently