答案 0 :(得分:1)
这将为您完成这项工作,请查看php的$ _POST,因为这个问题是不必要的,可以在互联网上轻松搜索。
<?php
if(isset($_POST['image'])) {
echo "<img src='" . $_POST['image'] . "' />";
}
?>
<form action="" method="POST">
<input type="text" name="image" />
<button type="submit">Show image</button>
</form>