[php]<?php
//verbinden
$con = mysql_connect(“localhost”,“root”,“usbw”);
if (!$con)
{
die('Could not connect: ’ . mysql_error());
}
mysql_select_db(“boekenclub”, $con);
?>
| ” . $row[‘voornaam’] . “ | ” . $row[‘voorvoegsel’] . “ | ” . $row[‘achternaam’] . “ | ” . $row[‘straat’] . “ | ” . $row[‘nummer’] . “ | ” . $row[‘postcode’] . “ | ” . $row[‘plaats’] . “ | ” . $row[‘geboortedatum’] .” | " . “<a href=“verwijder.php?id=” . $row[‘id’] . “”>” .$row[‘id’] ." | " . “<a href=“wijzigen.php?id=” . $row[‘id’] . “”>” .$row[‘id’] ." |
I want to add an image in “id” so not see the “id” but the image in [php]>
[/php]