PHP-返回带有用户数据的网址的搜索框

时间:2019-04-26 16:48:43

标签: php html

我有以下PHP代码:

<?php
if(isset($_REQUEST['img'])){
?>
<title><?=$_REQUEST['img']?></title>
<style>
  img{
    max-width: 80%;
    max-height:100%;
    display: block;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    border: 3px solid blue;
    }       
}
</style>

<style>
body  {
    background-color: #0e0e0e;
}
</style>

<img src="<?=$_REQUEST['img']?>"class="img">

<a href="<?=$_REQUEST['img']?>" download>
    <strong>
        <p style="text-align: center;">
            <span style="color: #ffffff;">Download Image: <?=$_REQUEST['img']?></span>
        </p>
    <strong
</a>
<?php
}
?>

此代码用于拾取图像并将其显示在屏幕上。可能使用的URL的示例是https://i.luckvintage.net/?img=jnl53XVVfi.jpg。我如何创建一个PHP输入框,将用户输入的数据放入其中,并在按下按钮时将其放入URL中?这是我的意思的示例:用户输入文本“ jnl53XVVfi”并单击按钮。这将打开URL https://i.luckvintage.net/?img=jnl53XVVfi.jpg,该URL将显示图像。

我尝试搜索Internet,但是找不到任何可以完成此特定任务的内容。我对PHP的了解也很少,所以我不了解任何技术术语。

非常感谢。

1 个答案:

答案 0 :(得分:0)

我刚刚添加了这段代码,它运行良好。

 <form action="image.php" method="GET">
    Search Image:<input type="text" name="img">

    <input type="submit" value="Open Image">
 </form>