Can some1 pls help with any online ftp client that can unrar files
Online Ftp client that can unrar files
Collapse
X
-
for the ftp part i think you can easily connect using standard php functions.
to unrar IN the ftp there must(i suppose, maybe someone knows another way) be an application hosted by the server you connect to.
connect to the ftp and login with
Code:$ftph = ftp_connect("ftp.exmp.com"); $login = ftp_login($ftph, "user", "pass");
Code:ftp_exec($ftph, "unrar x file.rar");
Comment