我有以下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知识,所以我不知道任何技术术语。
月关宝盒