Got a PHP 4 server, RH8, Apache 2,
I have been experiencing problems with an assignment operator. The following code..
/
$GALERIA = new SmartGallery();
$GALERIA->setTemplateFile("example.tpl");
$GALERIA->setTextCss("destacado_azul");
/
fails and produces the following output as a text string; (the / and / are for our benefit in this posting)
/
setTemplateFile("example.tpl"); $GALERIA->setTextCss("destacado_azul");
/
Looks like the assignment that occurs at "$GALERIA->setTemplateFile" is being treated as a text string right after the "->".
Any ideas? I have run into this with another coding effort...