我知道这可能听起来很愚蠢,但我试图回应一个图像,我从网址得到他的名字,我没有得到任何东西只有图像的替代文字。
这是我的代码
<?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>
答案 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)