Posted by Ramon on 06/14/06 08:02
Hello
I'm new to OOP in PHP and I have this question:
I have a class called "Form", which contains a collection of classes
(objects) called "Textbox".
Now I need to call the Textbox class's method "getOuterHTML()".
In Visual Basic, you should do it like this:
oForm.getTextBoxByID("Number").getOuterHTML()
In PHP I tried this: $oForm->getTextBoxByID("Number")->getOuterHTML();
But that doesn't work...
Is there a way to do this in one statement? (I use PHP4).
Thanks in advance!
Ramon.
[Back to original message]
|