Home  >  Article  >  Backend Development  >  PHP uses iframe to implement code for uploading files without refreshing_PHP tutorial

PHP uses iframe to implement code for uploading files without refreshing_PHP tutorial

WBOY
WBOYOriginal
2016-07-21 15:23:51814browse

Copy code The code is as follows:


 
 No refresh upload File
 
 
 
text-align:center">
 

 

 
 < input type="file" name="myfile" />
 
 

 < ;iframe style="width:0; height:0; border:0;" name="form-target">
 

 
 
 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'] > $maxSize) {
$result = 1;
} else if (!in_array( $myfileType, $fileTypes)) {
$result = 2;
} elseif (is_uploaded_file($myfile['tmp_name'])) {
$toFile = $uploadDir . '/' . $myfile[ 'name'];
if (@move_uploaded_file($myfile['tmp_name'], $toFile)) {
$result = 0;
} else {
$result = -1;
 }
 } else {
 $result = 1;
 }
 }
 ?>
 

http://www.bkjia.com/PHPjc/324402.htmlwww.bkjia.comtruehttp: //www.bkjia.com/PHPjc/324402.htmlTechArticleCopy the code code as follows: html head title upload file without refreshing/title meta Content-type="text/html" charset="utf-8" / script type="text/webpage special effects" function startUpload() { docum...
Statement:
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
Previous article:Countermeasures to prevent local users from using fsockopen to DDOS attacks_PHP tutorialNext article:Countermeasures to prevent local users from using fsockopen to DDOS attacks_PHP tutorial

Related articles

See more