10 lines
172 B
PHP
10 lines
172 B
PHP
<h1>Übung: Konto</h1>
|
|
|
|
<?php
|
|
require_once("konto.class.php");
|
|
|
|
$bank = new Konto("DE2498276498237", "Michael Staudt", 1000);
|
|
$bank->einzahlen(1000);
|
|
$bank->ausgeben();
|
|
|
|
?>
|