
<?php
class CAcApp {
var $todays_date = date("Y-m-d");
var $name = "John";
var $owner = 'Fred ' . 'Jones';
function CAcApp() {
}
function SomeOutput() {
echo "I am CAcApp class and today is ".$todays_date.". My name is $name and my owner is $owner";
}
}
?>
Bitte um Hilfe !