38 lines
910 B
PHTML
38 lines
910 B
PHTML
<?php include '__header.phtml'; ?>
|
|
|
|
<script>
|
|
function ChangeColor(tableRow, highLight) {
|
|
if (highLight) {
|
|
tableRow.style.backgroundColor = '#0094ff';
|
|
}
|
|
else {
|
|
tableRow.style.backgroundColor = 'white';
|
|
}
|
|
}
|
|
function DoNav(theUrl) {
|
|
document.location.href = theUrl;
|
|
}
|
|
</script>
|
|
<table class="table">
|
|
<tr>
|
|
<th>IBAN</th>
|
|
<th>Saldo</th>
|
|
<th>TIJDELIJK</th>
|
|
</tr>
|
|
<?php
|
|
foreach ($rekeningen as $rekening) {
|
|
?>
|
|
<tr onmouseover="ChangeColor(this, true);"
|
|
onmouseout="ChangeColor(this, false);" onclick="DoNav('transacties.phtml');">
|
|
<td><?php echo $rekening['iban']; ?></td>
|
|
<td><?php echo $rekening['saldo']; ?></td>
|
|
<td><?php echo "€" . $rekening['nr']; ?></td>
|
|
</tr>
|
|
<?php
|
|
|
|
}
|
|
?>
|
|
</table>
|
|
|
|
<?php include '__footer.phtml'; ?>
|