tma/include/affimages.php
2020-11-29 11:25:34 +01:00

11 lines
231 B
PHP

function affimage($desc,$small,$big,$tonew="false")
{
$htmlstring="<a href='$grande'";
if ($tonew != "false")
{
$htmlstring .= " target='blank'";
}
$htmlstring .= "><img src='$small' alt='$desc'></a>";
echo $htmlstring;
}