Heim >Backend-Entwicklung >PHP-Tutorial > php中下传图片,路径对,图片路径也能插入数据库中,但就是下传不到放图片的文件夹上

php中下传图片,路径对,图片路径也能插入数据库中,但就是下传不到放图片的文件夹上

WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB
WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOriginal
2016-06-13 13:00:37919Durchsuche

php中上传图片,路径对,图片路径也能插入数据库中,但就是上传不到放图片的文件夹下
php中上传图片,路径对,图片路径也能插入数据库中,但就是上传不到放图片的文件夹下
------解决方案--------------------
include("../conn/conn.php");

if($_POST["submit"]!==""){
if(!is_dir("/up")){ 
mkdir("/up");
}
$path1="up/".$_FILES["pic1"]["name"];    //图片
move_uploaded_file($_FILES["pic1"]["tmp_name"],$path1);  

$path2="up/".$_FILES["pic2"]["name"];    //图片
move_uploaded_file($_FILES["pic2"]["tmp_name"],$path2);  

$path3="up/".$_FILES["pic3"]["name"];    //图片
move_uploaded_file($_FILES["pic3"]["tmp_name"],$path3);  

$path4="up/".$_FILES["pic4"]["name"];    //图片
move_uploaded_file($_FILES["pic4"]["tmp_name"],$path4);  

Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn