


AJAX PHP upload image example code without refreshing_PHP tutorial
In the past, we would all do ajax+php to implement file upload, so that the user can dynamically upload images without refreshing the page, which improved the user experience. At that time, the most commonly used method was to use iframe to operate. Let me introduce the actual operation. Ajax php image upload example.
I have been studying ajax+php form refresh verification before, which is mainly used in registration and submission forms. The use of ajax technology greatly increases the friendliness of visitors to web pages. As the most important technology to improve page friendliness, ajax is indispensable. Less.
Of course, ajax is not only the non-refresh verification of the form, but can also be better applied to other places on the page. Ajax technology is basically used in any place where there is no refresh. Today we are discussing ajax+php no refresh Upload pictures.
The technology of uploading pictures without refreshing is often used to upload attachments or pictures, such as the common QQ mailbox upload attachments, 163 mailbox upload attachments, QQ space upload pictures, etc. These types of applications use ajax non-refresh technology, which can Let us see the uploaded attachments on the current page, but in the background of ordinary small sites, when uploading products, we often cannot see the uploaded product images, which often does not achieve good results.
The following is the source code of an ajax+php non-refresh image upload. This is just an example. Modifying this example can be well applied to web pages, adding a non-refresh image upload to your page. Effects, there are many such effects, you can search them online.
file.php file
The code is as follows | Copy code | ||||
$sort=12; $f_type=strtolower("swf,jpg,rar,zip,7z,iso,gif");//Set the file types that can be uploaded $file_size_max=200*1024*1024;//Limit the maximum capacity of a single file upload $overwrite = 0;//Whether it is allowed to overwrite the same file, 1: allowed, 0: not allowed $f_input="Files";//Set the upload domain name foreach($_FILES[$f_input]["error"] as $key => $error){ $up_error="no"; If ($error == UPLOAD_ERR_OK){ $f_name=$_FILES[$f_input]['name'][$key];//Get the upload source file name $uploadfile=$uploaddir.strtolower(basename($f_name)); $tmp_type=substr(strrchr($f_name,"."),1);//Get the file extension $tmp_type=strtolower($tmp_type); If(!stristr($f_type,$tmp_type)){ echo "<script>alert('Sorry, cannot upload ".$tmp_type." format file, ".$f_name." file upload failed!')</script>"; $up_error="yes"; } If ($_FILES[$f_input]['size'][$key]>$file_size_max) { echo "<script>alert('Sorry, the file you uploaded ".$f_name." has a capacity of ".round($_FILES[$f_input]<br> ['size'][$key]/1024)."Kb, greater than the specified".($file_size_max/1024)."Kb, upload failed!')</script>"; $up_error="yes"; } If (file_exists($uploadfile)&&!$overwrite){ echo "<script>alert('Sorry, the file ".$f_name." already exists, upload failed!')</script>"; $up_error="yes"; } $string = 'abcdefghijklmnopgrstuvwxyz0123456789'; $rand = ''; for ($x=0;$x<12;$x++) $rand .= substr($string,mt_rand(0,strlen($string)-1),1); $t=date("ymdHis").substr($gettime[0],2,6).$rand; $attdir="./file/"; If(!is_dir($attdir)) { mkdir($attdir);} $uploadfile=$attdir.$t.".".$tmp_type; If(($up_error!="yes") and (move_uploaded_file($_FILES[$f_input]['tmp_name'] [$key], $uploadfile))){
$_msg=$_msg.$f_name.'Upload successful'; |
The code is as follows | Copy code |
|

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

In this chapter, we will understand the Environment Variables, General Configuration, Database Configuration and Email Configuration in CakePHP.

PHP 8.4 brings several new features, security improvements, and performance improvements with healthy amounts of feature deprecations and removals. This guide explains how to install PHP 8.4 or upgrade to PHP 8.4 on Ubuntu, Debian, or their derivati

To work with date and time in cakephp4, we are going to make use of the available FrozenTime class.

To work on file upload we are going to use the form helper. Here, is an example for file upload.

In this chapter, we are going to learn the following topics related to routing ?

CakePHP is an open-source framework for PHP. It is intended to make developing, deploying and maintaining applications much easier. CakePHP is based on a MVC-like architecture that is both powerful and easy to grasp. Models, Views, and Controllers gu

Validator can be created by adding the following two lines in the controller.

Working with database in CakePHP is very easy. We will understand the CRUD (Create, Read, Update, Delete) operations in this chapter.
