uploadfile.php 955 B

1234567891011121314151617181920212223242526272829303132333435
  1. <?php
  2. include "conn.php";
  3. ?>
  4. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  5. <html xmlns="http://www.w3.org/1999/xhtml">
  6. <head>
  7. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  8. <title>管理区域</title>
  9. <style>
  10. body{margin:0}
  11. form{
  12. margin:0;padding:0;
  13. }
  14. input{
  15. float:left;height:22px;border:1px solid #DBE6E3;background:#FFF;
  16. width:260px;
  17. }
  18. .btn1{
  19. width:60px;height:22px;background:#ECE9D8;
  20. cursor:pointer;margin-left:10px;
  21. }
  22. </style>
  23. <script>
  24. function chkuploadfile(){
  25. if( document.getElementById("filedata").value == '' ){alert('请选择需要上传的文件');return false;}
  26. }
  27. </script>
  28. </head>
  29. <body>
  30. <form method="post" name="form1" action="upload.php?act=s" enctype="multipart/form-data" onsubmit="return chkuploadfile()">
  31. <input type="file" name="filedata" id="filedata" /><input type="submit" value="上传" class="btn1" />
  32. </form>
  33. </body>
  34. </html>