Hello all,
<?php
$result = mysql_query("SELECT Artikelnummer, Artikelmerk, Artikelnaam FROM Product ORDER BY Artikelnummer;");
printf('<table class="adminblok">');
while($r = mysql_fetch_assoc($result))
{
printf("<tr><td><a href="#">%u</a></td><td></td><td>%s</td><td>%s</td></tr>",$r[ "Artikelnummer"], $r["Artikelmerk"], $r["Artikelnaam"]);
}
printf('</table>');
?>
The codes that are printed bold are the tags that don't work on my website! Why is this and how can i fix this?
I want to show a list out of the database and also make it links. So when I click on an attribute, it shows a new page with all attributes from that record.