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.getTextBo xByID("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.
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.getTextBo xByID("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.
Comment