我正在使用表单输入来更改我已经完成的图像。实际上,此图像在主页上显示为新标题。所以我有用于更改图像链接的 URl 输入字段。当我只提交一个链接然后另一个链接为空时,我遇到了问题,所以这就是为什么其他图像 src 为空。基本上我想更改此旧图像。
有没有人知道如何处理是个问题。
html
<form action="" method="post">
<input type="url" name="image1"/>
<input type="url" name="image2"/>
<input type="url" name="image3" />
<input type="submit"/>
</form>
<img src="<?php echo $img1; ?>" />
<img src="<?php echo $img2; ?>" />
<img src="<?php echo $img3; ?>" />
PHP
<?php
$img1=$_POST['image1'];
$img2=$_POST['image2'];
$img3=$_POST['image3'];
?>