上传结果将显示在框架里,例如在a.php中输出内容将会展示在iframe框架中。
<body>
<iframe name="up" src="about:blank" ></iframe>
<form target="up" method="post" action="a.php" enctype="multipart/form-data">
<input type="file" name="img">
<input type="submit" value="提交 ">
</form>
</body>
</html>
a.php
<?php
print_r($_FILES);
?>