Merge branch 'dev' of git.verictas.com:InformaticaD4p/informatica-eindproject into dev
This commit is contained in:
commit
316124aa26
@ -1,6 +1,14 @@
|
|||||||
<?php include '__header.phtml'; ?>
|
<?php include '__header.phtml'; ?>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
|
function ChangeColor(tableRow, highLight) {
|
||||||
|
if (highLight) {
|
||||||
|
tableRow.style.backgroundColor = '#0094ff';
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
tableRow.style.backgroundColor = 'white';
|
||||||
|
}
|
||||||
|
}
|
||||||
function DoNav(theUrl) {
|
function DoNav(theUrl) {
|
||||||
document.location.href = theUrl;
|
document.location.href = theUrl;
|
||||||
}
|
}
|
||||||
@ -14,7 +22,8 @@
|
|||||||
<?php
|
<?php
|
||||||
foreach ($rekeningen as $rekening) {
|
foreach ($rekeningen as $rekening) {
|
||||||
?>
|
?>
|
||||||
<tr onclick="DoNav('transacties.phtml');">
|
<tr onmouseover="ChangeColor(this, true);"
|
||||||
|
onmouseout="ChangeColor(this, false);" onclick="DoNav('transacties.phtml');">
|
||||||
<td><?php echo $rekening['iban']; ?></td>
|
<td><?php echo $rekening['iban']; ?></td>
|
||||||
<td><?php echo $rekening['saldo']; ?></td>
|
<td><?php echo $rekening['saldo']; ?></td>
|
||||||
<td><?php echo "€" . $rekening['nr']; ?></td>
|
<td><?php echo "€" . $rekening['nr']; ?></td>
|
||||||
|
Reference in New Issue
Block a user