/ Published in: PHP
URL: http://bytes.com/topic/php/answers/698197-simple-example-how-wirite-php-using-classes
Expand |
Embed | Plain Text
class myClass { protected $message; public function __construct() { $this->message = 'Hello, World!'; } public function echoMessage() { } }
You need to login to post a comment.
