You have an extra right paren in your if() statement, this would be the fixed line:
if ($hero->f("Image") != "") {
...
}
Yours looks like an if()) statement 😉
--Ryan
Nico wrote:
<?php
if($hero->f("Image") != ""))
{
printf("<img src=\"%s\">", $hero->f("Image"));
}
?>