print("<a href=\"interview.php?id={$Row['id']}\">{$Row['title']}</a>".($Row['datum'] > date('Y-m-d', strtotime("-10 day")) ? "<IMG SRC=\"new.gif\">" : "" ));
or if you want the image will serve as link (it will be clickable)
print("<a href=\"interview.php?id={$Row['id']}\">{$Row['title']}".($Row['datum'] > date('Y-m-d', strtotime("-10 day")) ? "<IMG SRC=\"new.gif\">" : "" )."</a>");