// set up basic connection
$conn_id = ftp_connect($ftp_server);
// login with username and password
$login_result = ftp_login($conn_id, $ftp_user_name, $ftp_user_pass);
// check connection
if ((!$conn_id) || (!$login_result))
{
echo "FTP connection has failed!";
echo "Attempted to connect to $ftp_server for user $ftp_user_name";
exit;
} else
{
echo "Connected to $ftp_server, for user $ftp_user_name";
//ftp_mkdir($conn_id, $dir);
}
if (ftp_put($conn_id,$t_img))
{
echo "Successfully uploaded $t_img\n";
} else
{
echo "There was a problem while uploading $t_img\n";
}
...
[Error]
Warning: ftp_put() expects at least 4 parameters, 2 given in C:\www\001\testcode\data4.php on line 30
There was a problem while uploading Array
line 30 คือบรรทัดนี้ครับ if (ftp_put($conn_id,$t_img))
ช่วยดูทีครับผมเขียนผิดอะไร ขอบคุณครับ
Warning: ftp_put(111.111.105.111/002/img/test.jpg) [function.ftp-put]: failed to open stream: No such file or directory in C:\www\001\testcode\data4.php on line 33
<?PHP
include ("connects.php");
///////////////////ftp connect//////////////////////
$t_img = $_FILES['t_img'];
$datai = $_FILES['t_img']['name'];
$datau = "111.111.105.111/002/img/".$_FILES['t_img']['name'];
$ftp_server = "111.111.105.111";
$ftp_user_name = "002";
$ftp_user_pass = "002";
// set up basic connection
$conn_id = ftp_connect($ftp_server);
// login with username and password
$login_result = ftp_login($conn_id, $ftp_user_name, $ftp_user_pass);
// check connection
if ((!$conn_id) || (!$login_result))
{
echo "FTP connection has failed!";
echo "Attempted to connect to $ftp_server for user $ftp_user_name";
exit;
} else
{
echo "Connected to $ftp_server, for user $ftp_user_name";
//ftp_mkdir($conn_id, $dir);
}
if (ftp_put($conn_id,$datai,$datau,FTP_BINARY))
{
echo "<script>alert('Successfully');</script>";
} else
{
echo "There was a problem while upload $datai";
}
//////////////////////////////////////////////////////////
//////////// close the FTP stream ///////////////////////
ftp_close($conn_id);
///////////////////////////////////
?>
มันคอนเน็คได้นะครับแต่อัพไฟล์ไม่ได้
[Error]
Warning: ftp_put(111.111.105.111/002/img/test.jpg) [function.ftp-put]: failed to open stream: No such file or directory in C:\www\001\testcode\data4.php on line 33