Home php教程 php手册 php完整图片上传代码

php完整图片上传代码

Jun 06, 2016 pm 07:58 PM
php upload code Backstage picture whole us Effect Target website

我们的目标效果:网站后台图片上传,点击上传选择图片,上传成功之后自动把图片名称放在input文本框内!! 先说使用方法吧:(代码在下方自行复制,共三个demo页) 首先,最好单独创建个文件夹把upimg.htm和uploadf.php页面放置在一起。(个人建议) 1.把Upl

我们的目标效果:网站后台图片上传,点击上传选择图片,上传成功之后自动把图片名称放在input文本框内!!

先说使用方法吧:(代码在下方自行复制,共三个demo页)

首先,最好单独创建个文件夹把upimg.htm和uploadf.php页面放置在一起。(个人建议)

1.把Upload页内的<script>部分粘贴到你的上传页面头部,<br> 然后再把下面的表单<input>内容复制到你的上传位置!<br> 注意修改的地方有:<form>里的name属性<br> onClick里的window.open('upimg.htm')修改为你放置的路径!<br> 2.uploadf.php页:第5行代码设置你的上传路径!!<br> 第15行设置允许上传图片的&#26684;式!!<br> <br> 好叻,看&#20284;好多代码,按照上述步骤很简单的分分钟就解决!快去试试上传吧~<br> </script>

Upload.htm页面代码:

<script>
function setFile(f1){ 
	var str = f1;
	var n = str.lastIndexOf("/")  //获取斜杠最后一次出现的位置
document.frm.logoImg.value= str.substring(n+1);   
     }
</script>


Copy after login
请选择上传的图片

upimg.htm页面代码:


<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>上传图片</title>
<script language="javascript">
    function $(id){
     return document.getElementById(id);
    }
function ok(){
     $("logoimg").src = $("filename").value;
}
</script>



Copy after login
请选择上传的图片
注意:请上传XX*XX像素的gif|jpg|jpeg|png格式的图片
uploadf.php页面代码:
<meta charset="'utf-8'">
<?php if(!empty($_GET[&#39;submit&#39;])) 
{ 
$path="../../red_style/example/"; //上传路径 
//echo $_FILES["filename"]["type"]; 

if(!file_exists($path)) 
{ 
//检查是否有该文件夹,如果没有就创建,并给予最高权限 
mkdir("$path", 0700); 
}//END IF 

//允许上传的文件格式 
$tp = array("image/gif","image/jpeg","image/jpg","image/png"); 
//检查上传文件是否在允许上传的类型 

if(!in_array($_FILES["filename"]["type"],$tp)) 
{ 
echo "格式不对"; 
exit; 
}//END IF 

if($_FILES["filename"]["name"]) 
{ 
$file1=$_FILES["filename"]["name"]; 
$file2 = $path.time().$file1; 
$flag=1; 
}//END IF 

if($flag) $result=move_uploaded_file($_FILES["filename"]["tmp_name"],$file2); 

//特别注意这里传递给move_uploaded_file的第一个参数为上传到服务器上的临时文件 
if($result) 
{ 
//echo "上传成功!".$file2; 
echo "<script language=&#39;javascript&#39;>"; 
echo "alert(\"上传成功!\");"; 
//echo " location='add_aaa.php?pname=$file2'"; 
echo ""; 
echo("<input type='\"button\"' name='\"Submit\"' value='\"确定\"' onclick="\"window.opener.setFile('".$file2."');window.close();\"">");
echo "图片名称:".$file2;
}//END IF 
} else {
echo "file is null!";
}
?>
Copy after login
个人主页



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

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
Two Point Museum: All Exhibits And Where To Find Them
1 months ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

CakePHP Project Configuration CakePHP Project Configuration Sep 10, 2024 pm 05:25 PM

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

PHP 8.4 Installation and Upgrade guide for Ubuntu and Debian PHP 8.4 Installation and Upgrade guide for Ubuntu and Debian Dec 24, 2024 pm 04:42 PM

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

CakePHP Date and Time CakePHP Date and Time Sep 10, 2024 pm 05:27 PM

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

CakePHP File upload CakePHP File upload Sep 10, 2024 pm 05:27 PM

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

CakePHP Routing CakePHP Routing Sep 10, 2024 pm 05:25 PM

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

Discuss CakePHP Discuss CakePHP Sep 10, 2024 pm 05:28 PM

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

CakePHP Creating Validators CakePHP Creating Validators Sep 10, 2024 pm 05:26 PM

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

How To Set Up Visual Studio Code (VS Code) for PHP Development How To Set Up Visual Studio Code (VS Code) for PHP Development Dec 20, 2024 am 11:31 AM

Visual Studio Code, also known as VS Code, is a free source code editor — or integrated development environment (IDE) — available for all major operating systems. With a large collection of extensions for many programming languages, VS Code can be c

See all articles