我已经为此工作了一段时间。
我想要的是网页有一个表单,它要求输入图像的 url,一旦他们输入 url 并单击提交,它应该转到另一个页面并应该在页面上显示图像。
帮助?
另外,有什么方法可以调用图像的高度和宽度?
注意:我不能使用 ASP
您的文件格式 为 form.html
<form method='get' action='show_img.php'>
<input type='text' name='url' value='' /> URL
<input type='submit' value='Submit' />
</form>
接收表单数据并显示图像的文件: show_img.php
<?php
$url_path = $_GET['url'];
// Don't forget to cheack if recieved data is SAFE!
echo "<img src={$url_path} />";
?>