This is a discussion on T_OBJECT_OPERATOR within the alt.comp.lang.php forums, part of the PHP Programming Forums category; I am getting the following error Parse error: parse error, unexpected T_OBJECT_OPERATOR in C:\m\www\php\class\class_myhtml.php ...
|
|||||||
| FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
|
|||
|
I am getting the following error
Parse error: parse error, unexpected T_OBJECT_OPERATOR in C:\m\www\php\class\class_myhtml.php on line 9 Please help. The code is below ------------------------------------------------------------------------------------------------------------ 1. <?php 2. class myhtml{ 3. var $starthtml; 4. var $heading; 5. var $body; 6. var $endhtml; 7. 8. function myhtml($heading,$body) { 9. this->starthtml = "<html>"; 10. this->heading = '<heading>' .$heading . '</heading>'; this->body = '<body>'.$body .'</body>'; //this->endhtml = '</html>'; } function display() { $str= this->starthtml . this->heading . this->body . this->endhtml ; echo $str; } } ?> ------------------------------------------------------------------------------------------------------------ <pre> <?php include "class_myhtml.php"; $page1 = new myhtml('myhead','hello world'); $page1.display; ?> </pre> ------------------ |
|
|||
|
meshulamgill@gmail.com said the following on 12/12/2005 22:52:
> I am getting the following error > Parse error: parse error, unexpected T_OBJECT_OPERATOR in > C:\m\www\php\class\class_myhtml.php on line 9 > Please help. The code is below > > ------------------------------------------------------------------------------------------------------------ > 1. <?php > 2. class myhtml{ > 3. var $starthtml; > 4. var $heading; > 5. var $body; > 6. var $endhtml; > 7. > 8. function myhtml($heading,$body) { > 9. this->starthtml = "<html>"; Missing a $... -- Oli |