Tabel met rekeningen is af
This commit is contained in:
		@@ -4,6 +4,8 @@
 | 
				
			|||||||
    <tr>
 | 
					    <tr>
 | 
				
			||||||
        <th>IBAN</th>
 | 
					        <th>IBAN</th>
 | 
				
			||||||
        <th>Saldo</th>
 | 
					        <th>Saldo</th>
 | 
				
			||||||
 | 
							<th>Rekeningtype</th>
 | 
				
			||||||
 | 
							<th>Rente</th>
 | 
				
			||||||
    </tr>
 | 
					    </tr>
 | 
				
			||||||
    <?php
 | 
					    <?php
 | 
				
			||||||
        foreach ($rekeningen as $rekening) {
 | 
					        foreach ($rekeningen as $rekening) {
 | 
				
			||||||
@@ -11,6 +13,8 @@
 | 
				
			|||||||
            <tr class="clickable" onclick="document.location.href = 'rekeningen/<?php echo $rekening['nr'] ?>'">
 | 
					            <tr class="clickable" onclick="document.location.href = 'rekeningen/<?php echo $rekening['nr'] ?>'">
 | 
				
			||||||
                <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['naam']; ?></td>
 | 
				
			||||||
 | 
									<td><?php echo $rekening['rente']; ?></td>
 | 
				
			||||||
            </tr>
 | 
					            </tr>
 | 
				
			||||||
            <?php
 | 
					            <?php
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user