Thread: Hello
View Single Post
Old 11-19-2007, 12:47 PM   #5 (permalink)
DragonBe
The Wanderer
PHP Guru Advanced Programmer Zend Certified 
 
DragonBe's Avatar
 
Join Date: Nov 2007
Location: according to my wife: on the Net
Posts: 19
Thanks: 0
DragonBe is on a distinguished road
Default

Code:
<?php
class bie {
   public function __construct($name) 
   { 
       return  sprintf(
         "howdie %s and welcome to this php community.", 
         htmlentities($name)
       );
    }
}

echo new bie("TlcAndres");
Send a message via ICQ to DragonBe Send a message via Skype™ to DragonBe
DragonBe is offline  
Reply With Quote