-1
I wonder if it is possible to display an image in an HTML code where only its link is stored in a PHP variable. I tried to do it the way I thought it was obvious but I didn’t succeed.
<!DOCTYPE html>
<html>
<?php
$imagem = 'http://www.mediafire.com/view/wg0156qxjkzulv3/premium.png/file ';
?>
<img src="<?php echo $imagem;?>" alt="">
</html>