我有以下PHP代码:<?phpif(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 回答
月关宝盒
TA贡献1772条经验 获得超5个赞
我刚刚添加了这段代码,它运行良好。
<form action="image.php" method="GET">
Search Image:<input type="text" name="img">
<input type="submit" value="Open Image">
</form>
- 1 回答
- 0 关注
- 113 浏览
添加回答
举报
0/150
提交
取消