Creation of FTP
Moderator: General Moderators
-
sahilkumar1234
- Forum Newbie
- Posts: 3
- Joined: Thu Mar 03, 2011 6:08 am
Creation of FTP
Hello!
Can any one tell me how to create a FTP by php code. Like FileZilla.
Please tell me asap.
Can any one tell me how to create a FTP by php code. Like FileZilla.
Please tell me asap.
-
sahilkumar1234
- Forum Newbie
- Posts: 3
- Joined: Thu Mar 03, 2011 6:08 am
Re: Creation of FTP
I think no one has any view on this or no one is going to take a challenge in this topic.
- DigitalMind
- Forum Contributor
- Posts: 152
- Joined: Mon Sep 27, 2010 2:27 am
- Location: Ukraine, Kharkov
Re: Creation of FTP
I think you should be more specific.
-
sahilkumar1234
- Forum Newbie
- Posts: 3
- Joined: Thu Mar 03, 2011 6:08 am
Re: Creation of FTP
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.
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.
- John Cartwright
- Site Admin
- Posts: 11470
- Joined: Tue Dec 23, 2003 2:10 am
- Location: Toronto
- Contact:
Re: Creation of FTP
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.
See http://ca3.php.net/ftp
Otherwise, you need to be specific on what you are asking.
Re: Creation of FTP
PHP can't run client-side, so no - you can't create a fully functionaly FTP program like Filezilla, with only PHP.
Real programmers don't comment their code. If it was hard to write, it should be hard to understand.
Re: Creation of FTP
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.
There are 10 types of people in this world, those who understand binary and those who don't
- John Cartwright
- Site Admin
- Posts: 11470
- Joined: Tue Dec 23, 2003 2:10 am
- Location: Toronto
- Contact:
Re: Creation of FTP
Why not? If PHP is on the client's machine you could achieve the same functionality.pickle wrote: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
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?
Real programmers don't comment their code. If it was hard to write, it should be hard to understand.
- John Cartwright
- Site Admin
- Posts: 11470
- Joined: Tue Dec 23, 2003 2:10 am
- Location: Toronto
- Contact:
Re: Creation of FTP
I know quite a few people, and have developed similiar things for my personal use. All I was suggesting is it is possible.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?
Re: Creation of FTP
Fair enough. It is possible, just not practical for a general public application.
Real programmers don't comment their code. If it was hard to write, it should be hard to understand.