/ Published in: PHP
Display Copyright
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
<?php /* |--------------------------- | Author: Evin Weissenberg |--------------------------- */ class Copyright_Display { private $company_name; private $utf8; function __constructor() { } function setCompanyName($company_name) { $this->company_name = (string)$company_name; return $this; } function __get($property) { return $this->$property; } function render() { return $copyright; } function __destructor() { } } $c = new Copyright_Display(); $c->setCompanyName('ACME LLC')->render();
URL: http://www.evinw.com