tma/include/affimages.php

12 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;
}