Home > Backend Development > PHP Tutorial > PHP web page ftp code 2 file upload_PHP tutorial

PHP web page ftp code 2 file upload_PHP tutorial

WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB
Release: 2016-07-20 11:05:55
Original
1138 people have browsed it

php web page ftp code two file upload

$ftpserver=$_POST[ftpserver];
$ftpport=$_POST[ftpport];
$ftpuser= $_POST[ftpuser];
$ftppassword=$_POST[ftppassword];
$ftp=@ftp_connect($ftpserver,$ftpport);
if(!$ftp){ echo "Connect to FTP server" .$ftpserver."port".$ftpport."failed";exit;}
$rs=@ftp_login($ftp,$ftpuser,$ftppassword);
if(!$rs){ echo " Incorrect username or password, failed to connect to the FTP server";exit;}
$curDir=stripslashes($_POST[curDir]);
$localfile=str_replace("","/",stripslashes($_POST[ file1]));

if($localfile)
{
$filename=substr(strrchr($localfile,"/"),1);
if($curDir== "/")
{
$remotefile=$curDir.$filename;
}else{
$remotefile=$curDir."/".$filename;
}
$ rs=ftp_put($ftp,$remotefile,$localfile,FTP_ASCII);
if($rs)
{
echo "<script>alert('File uploaded successfully');history.back( );</script>";
exit;
}else{
echo "<script>alert('Failed to upload file');history.back();</script>" ;
exit;
}

}else{
echo "<script>alert('No file uploaded');history.back();</script>" ;
exit;
}
?>


www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/445066.htmlTechArticlephp web page ftp code two file upload?php $ftpserver=$_POST[ftpserver]; $ftpport=$_POST[ ftpport]; $ftpuser=$_POST[ftpuser]; $ftppassword=$_POST[ftppassword]; $ftp=@ftp_connect($ftp...
Related labels:
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
Latest Issues
php data acquisition?
From 1970-01-01 08:00:00
0
0
0
PHP extension intl
From 1970-01-01 08:00:00
0
0
0
How to learn php well
From 1970-01-01 08:00:00
0
0
0
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template