Because there should be an authentication, and in all the FTP accounts there is the login name and the password.
My distination is any person who own a web site and need to change his site contents frequantly (Web CMS). And every one who has a virtual web site allready has an FTP information to access his site, right?
What I mean by using FTP function is those PHP functions:
ftp_get()
ftp_put()
ftp_rename()
...
I think it is better to use those than using regular file functions:
fread()
rename()
unlink()
...
because the FTP functions are ready and easy to use.
But if there is any secure holes or disadvantages for using FTP functions???
Thx