(PCC)::[How-to-use-PHP-object-and-its-operations-in-php]::[php]
<!DOCTYPE html> <html> <body> <?php class Car { function Car() { $this->model = "VW"; } } // create an object $herbie = new Car(); // show object properties echo $herbie->model; ?> </body> </html>