I know it may sound stupid, but im trying to echo an image that i get his name from the url, i dont get anything only the alt text of the image.
This is my code
<?php
$url = $_GET["userpic"];
$DisplayImg = "./Imagenes/".$url.".jpg";
?>
<html>
<body>
<img src="<?php echo $DisplayImg; ?>" alt="Error" width="100%" height="100%" border="0" />
</body>
</html>