PHP image

[php]<?php
//verbinden
$con = mysql_connect(“localhost”,“root”,“usbw”);
if (!$con)
{
die('Could not connect: ’ . mysql_error());
}
mysql_select_db(“boekenclub”, $con);
?>

Ledenlijst <?php

{
$result = mysql_query
("
SELECT *
FROM ledenlijst
order by achternaam asc
“);
while($row = mysql_fetch_array($result))
echo “

";
}
?>
” . $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’] ."
[/php]

I want to add an image in “id” so not see the “id” but the image in [php]>

" . “<a href=“verwijder.php?id=” . $row[‘id’] . “”>” .$row[‘id’] ."" . “<a href=“wijzigen.php?id=” . $row[‘id’] . “”>” .$row[‘id’] ."";
[/php]
Sponsor our Newsletter | Privacy Policy | Terms of Service