php文件上传问题?
html页面代码:
<!-- Code highlighting produced by Actipro CodeHighlighter (freeware) http://www.CodeHighlighter.com/ --><!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <title>文件上传</title> </head> <body> <h1>文件上传</h1><br/> <form action="upload.php" method="post" enctype="multipart/form-data"> <div> <input type="hidden" name="max_file_size" value="10000000"/> <h1><label for="userfile">选择上传文件</label></h1><br/> <input type="file" name="userfile" id="userfile"/> <input type="submit" value="提交"/> </div> </form> </body>
<!-- Code highlighting produced by Actipro CodeHighlighter (freeware) http://www.CodeHighlighter.com/ --><meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <?php if($_FILES['userfile']['error']>0) echo "上传失败!!"; else echo "上传成功!!"; if($_FILES['userfile']['type'] !='text/plain') echo "请选择正确的文件类型!!"; ?>
PHP怎么学习?PHP怎么入门?PHP在哪学?PHP怎么学才快?不用担心,这里为大家提供了PHP速学教程(入门到精通),有需要的小伙伴保存下载就能学习啦!
Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号