我正在尝试根据网址中的ID加载图片:
例如:www.exampleurl.com/API/upload/1.jpg包含图像。
当我访问时,我正试图将该图像加载到单独的PHP文件中:www.exampleurl.com/photo/index.php?id = 1
到目前为止我的代码似乎不起作用:
<!DOCTYPE html>
<html>
<head>
</head>
<body>
<?php
intval($_GET['id']);
?>
<h1> <center> This is the image: </center> </h1>
<img src="http://exampleurl.com/API/upload/<?php echo $id;?>.jpg" alt="some_text">
</body>
</html>
任何帮助都将不胜感激。
答案 0 :(得分:4)
<!DOCTYPE html>
<html>
<head>
</head>
<body>
<?php
$id = intval($_GET['id']);
?>
<h1> <center> This is the image: </center> </h1>
<img src="http://exampleurl.com/API/upload/<?php echo $id;?>.jpg" alt="some_text">
</body>
</html>
您必须指定$ id