php学习记录 iframe 文件上传

来源:互联网 发布:手工网络拓扑发现 编辑:程序博客网 时间:2024/06/02 02:08
<html><head><title></title><meta http-equiv='Content-type' content='text/html;charset=utf-8'/><script type="text/javascript">function upload(){var pro = document.getElementById('process');pro.innerHTML="<img src='upload.jpg'/>";}</script></head><body><div id='process'></div><form action='upfile.php' method='post' enctype='multipart/form-data' target='up'><input type='file' name='pic'/><input type='submit' value='上传' onclick='upload();'> </form><iframe name='up' width='0' height='0' frameborder='0'></iframe></body></html>


php端


<?php//var_dump($_FILES);if(move_uploaded_file($_FILES['pic']['tmp_name'], 'c:/wamp/www/'.$_FILES['pic']['name']) == 1){echo "<script type='text/javascript'>parent.document.getElementById('process').innerHTML='成功';</script>";}sleep(3);?>


原创粉丝点击