FTP Connect Functions Error
Now i am trying ftp functions with assigns the format of server name in $ftp_server as follows
$ftp_Server="ft p:// server name /";
My Sample program
[code=php]
<?php
$ftp_server="ft p://server name";
//$ftp_server="se rver name";
$ftp_user="user name";
$ftp_pass="pass word";...
User Profile
Collapse
-
-
Thanks markus,Here i given the normal simple ftp connection program through php.
[code=php]
<?php
$ftp_server="ho st name";
$ftp_usr="user name";
$ftp_pwd="passw ord";
$ftp_port=21;
echo "Ftpserver : $ftp_server <br>";
// $conn_id = ftp_connect($ft p_server,$ftp_p ort) or die("Couldn't connect to $ftp_server"); ...Leave a comment:
-
FTP Functions Error
I am using the ftp functions in my project and it is properly run in my local server. but the same script is not working in client server.
My program
[code=php]
<?php
$ftp_server="se rver name";
$ftp_user="user name";
$ftp_pass="pass word";
$ftp_port=21;
echo "B4 connection";...
No activity results to display
Show More
Leave a comment: