0

我正在尝试根据 URL 中的 ID 加载图像:

例如:www.exampleurl.com/API/upload/1.jpg 包含一张图片。

当我转到:www.exampleurl.com/photo/index.php?id=1 时,我试图将该图像加载到一个单独的 PHP 文件中

到目前为止我的代码似乎不起作用:

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

任何帮助,将不胜感激。

4

1 回答 1

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

于 2013-07-22T20:13:47.377 回答