[PHP] Re: Animating with GD?

2003-08-28 Thread Edward Rudd
Not anymore due to the Unisys LZW patent issues.. GD has no support for GIF file anymore. Wait until next june.. Then you can create animated GIF files with GD (Unisys' patent expires). On Wed, 27 Aug 2003 21:35:43 +0200, Simon Fredriksson wrote: Is it possible to create GIF animations using

[PHP] checking the return value of member function with empty

2003-08-14 Thread Edward Rudd
I am having this rather annoying syntax problem. I have this.. if (!empty($this-GetParam('someparameter')) { // OK do something since the parameter is set. } However that fails with this parse error parse error, expecting `')'' Why??? If I do this $var = $this-GetParam('someparameter')); if