rente-op-rente
renteoprente.php
Code (php)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<?php
if (isset($_POST['startbedrag']) AND isset($_POST['rente']) AND isset($_POST['jaar'])){
$bedrag = $_POST['startbedrag'];
$rente = $_POST['rente'];
$produkt = 100+$rente;
$jaar = $_POST['jaar'];
for ($i = 0;$i<$jaar;$i++){
$bedrag = round(($bedrag/100)*$produkt, 2);
echo '<p>Jaar ' . ($i+1) . ' - ' . $bedrag . '</p>';
}
}
?>
<h1>Rente op rente</h1>
<form action="" method="post">
<p><input type="text" name="startbedrag"> Het startbedrag</p>
<p><input type="text" name="rente">% De rente</p>
<p><input type="text" name="jaar"> Het aantal jaren dat je je geld laat staan</p>
<p><input type="submit" value="Bereken!"></p>
if (isset($_POST['startbedrag']) AND isset($_POST['rente']) AND isset($_POST['jaar'])){
$bedrag = $_POST['startbedrag'];
$rente = $_POST['rente'];
$produkt = 100+$rente;
$jaar = $_POST['jaar'];
for ($i = 0;$i<$jaar;$i++){
$bedrag = round(($bedrag/100)*$produkt, 2);
echo '<p>Jaar ' . ($i+1) . ' - ' . $bedrag . '</p>';
}
}
?>
<h1>Rente op rente</h1>
<form action="" method="post">
<p><input type="text" name="startbedrag"> Het startbedrag</p>
<p><input type="text" name="rente">% De rente</p>
<p><input type="text" name="jaar"> Het aantal jaren dat je je geld laat staan</p>
<p><input type="submit" value="Bereken!"></p>