1
0
This repository has been archived on 2017-06-06. You can view files and clone it, but cannot push or open issues or pull requests.
informaticaD4P-2017/templates/index.phtml

38 lines
910 B
PHTML
Raw Normal View History

2017-03-26 14:18:47 +00:00
<?php include '__header.phtml'; ?>
2017-03-30 13:11:02 +00:00
<script>
2017-03-30 13:22:51 +00:00
function ChangeColor(tableRow, highLight) {
if (highLight) {
tableRow.style.backgroundColor = '#0094ff';
}
else {
tableRow.style.backgroundColor = 'white';
}
}
2017-03-30 13:11:02 +00:00
function DoNav(theUrl) {
document.location.href = theUrl;
}
</script>
2017-03-29 09:39:26 +00:00
<table class="table">
<tr>
<th>IBAN</th>
<th>Saldo</th>
<th>TIJDELIJK</th>
</tr>
<?php
foreach ($rekeningen as $rekening) {
?>
2017-03-30 13:22:51 +00:00
<tr onmouseover="ChangeColor(this, true);"
onmouseout="ChangeColor(this, false);" onclick="DoNav('transacties.phtml');">
2017-03-29 09:39:26 +00:00
<td><?php echo $rekening['iban']; ?></td>
<td><?php echo $rekening['saldo']; ?></td>
2017-03-29 15:08:58 +00:00
<td><?php echo "&euro;" . $rekening['nr']; ?></td>
2017-03-29 09:39:26 +00:00
</tr>
<?php
}
?>
</table>
2017-03-26 14:18:47 +00:00
<?php include '__footer.phtml'; ?>