来自PHP的Echo Image

时间:2015-05-05 19:37:48

标签: php echo

我知道这可能听起来很愚蠢,但我试图回应一个图像,我从网址得到他的名字,我没有得到任何东西只有图像的替代文字。

这是我的代码

<?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>

2 个答案:

答案 0 :(得分:1)

试试这个:

<html>
<body>
<img src="../Imagenes/<?php echo $_GET["userpic"]; ?>.jpg" alt="Error" width="100%" height="100%" border="0" /> 
</body>
</html>

如果仍然无效,那么你的路径是错误的,你可以通过添加

来看到它
<?php echo "<a href='../Imagenes/".$_GET["userpic"].".jpg'>this should link to your image</a>"; ?>

答案 1 :(得分:1)

但丁,

将扩展名更改为.php而不是.html

如果您想将PHP代码运行到.html,请参阅How do I add PHP code/file to HTML(.html) files?