hallo,
ich bin noch ein newbie und frage mich was an diesem code falsch ist
wo liegt der fehler???
kann mir jemand ein gutes tutorial nennen????
ich bin noch ein newbie und frage mich was an diesem code falsch ist
PHP-Code:
<html>
<head>
<title>
Mit Zahlen arbeiten </title>
</head>
<body>
<?php
class Zahl{
abstract function addieren($add);
}
class GanzeZahl extends Zahl{
var $wert;
fuction addieren($add){
$this->wert+=$add->wert;
return $this->wert;
}
}
?>
</body>
</html>
kann mir jemand ein gutes tutorial nennen????
Kommentar