iframe usage php uses iframe to implement code for uploading files without refreshing

WBOY
Release: 2016-07-29 08:46:49
Original
1082 people have browsed it

Copy the code The code is as follows:



 ="utf-8" />
 
 
 
 " enctype="multipart/form-data" target="form-target" name="MAX_FILE_SIZE" value="1000000" />
 
 < input type="submit" name="sub" value="upload" />
  
 
  



 
 php code
  sleep(2);
 $fileTypes = array('jpg','png','gif','bmp'); result = null;
 $uploadDir = './upfiles';
 $maxSize = 1 * pow(2,20);
 if ($_SERVER['REQUEST_METHOD'] == 'POST' && isset($_POST['sub '])) {
 $myfile = $_FILES['myfile'];
 $myfileType = substr($myfile['name'], strrpos($myfile['name'], ".") + 1);
if ($myfile['size'] > myfile['tmp_name'])) {
  $toFile = $uploadDir . '/' . $myfile['name'];
  if (@move_uploaded_file($myfile['tmp_name'], $toFile)) {
  $result
. top.window.stopUpload();
 


The above introduces the code of iframe usage. PHP uses iframe to implement the file upload function without refreshing, including the content of iframe usage. I hope it will be helpful to friends who are interested in PHP tutorials.


Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Recommendations
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!