Page 1 of 1
Creation of FTP
Posted: Thu Mar 03, 2011 6:17 am
by sahilkumar1234
Hello!
Can any one tell me how to create a FTP by php code. Like FileZilla.
Please tell me asap.
Re: Creation of FTP
Posted: Sun Mar 06, 2011 11:09 pm
by sahilkumar1234
I think no one has any view on this or no one is going to take a challenge in this topic.
Re: Creation of FTP
Posted: Mon Mar 07, 2011 5:36 am
by DigitalMind
I think you should be more specific.
Re: Creation of FTP
Posted: Wed Mar 09, 2011 5:58 am
by sahilkumar1234
ok thanks at least i got a response from your side.
perhaps you have noticed that FIREFTP an addon for file transfer in MOZILLA FIREFOX.
So i can do the lay out like that but is it possible that the functional part means the file sending purpose can be coded by the help of PHP coding.
Re: Creation of FTP
Posted: Wed Mar 09, 2011 10:45 am
by John Cartwright
If you want to implement a FTP client in php, then you can use the ftp family functions.
See
http://ca3.php.net/ftp
Otherwise, you need to be specific on what you are asking.
Re: Creation of FTP
Posted: Thu Mar 10, 2011 9:55 am
by pickle
PHP can't run client-side, so no - you can't create a fully functionaly FTP program like Filezilla, with only PHP.
Re: Creation of FTP
Posted: Thu Mar 10, 2011 10:15 am
by VladSun
In fact, it would be cool (just cool) to have a "web based" (SaaS) FTP client
WinBinder is a new open source extension for PHP, the script programming language. It allows PHP programmers to easily build native Windows applications.
Re: Creation of FTP
Posted: Thu Mar 10, 2011 10:17 am
by John Cartwright
pickle wrote:PHP can't run client-side, so no - you can't create a fully functionaly FTP program like Filezilla, with only PHP.
Why not? If PHP is on the client's machine you could achieve the same functionality.
Re: Creation of FTP
Posted: Thu Mar 10, 2011 10:19 am
by pickle
I was referring to the vast majority of cases, and what I assumed the original poster was intending - to create a website out of solely PHP that user's can use to FTP. How many people have PHP running as a service on their personal workstation?
Re: Creation of FTP
Posted: Thu Mar 10, 2011 10:28 am
by John Cartwright
pickle wrote:I was referring to the vast majority of cases, and what I assumed the original poster was intending - to create a website out of solely PHP that user's can use to FTP. How many people have PHP running as a service on their personal workstation?
I know quite a few people, and have developed similiar things for my personal use. All I was suggesting is it
is possible.
Re: Creation of FTP
Posted: Thu Mar 10, 2011 10:46 am
by pickle
Fair enough. It is possible, just not practical for a general public application.