is it inside <?PHP tags or <HTML> tags?
PHP Code:
<?php
echo '<a href="' . $link . '" target="_blank"><img src="./images/' . $categorie . '.png" width="40" height="40" border="1" title="' . $categorie . '"></a> ';
?>
<html>
<BODY>
<a href="<?php echo $link;?>" target="_blank"><img src="./images/<?php echo $categorie; ?>.png" width="40" height="40" border="1" title="<?php echo $categorie; ?>"></a>
</BODY>
</html>