2
0

add: files from last time and task

This commit is contained in:
cwikladaniel
2025-11-20 10:33:46 +01:00
parent 25f63a161b
commit be203da14d
5 changed files with 156 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
<h1>Übung: Konto</h1>
<?php
require_once("konto.class.php");
$bank = new Konto("DE2498276498237", "Michael Staudt", 1000);
$bank->einzahlen(1000);
$bank->ausgeben();
?>