Hi Everyone, I am in the process of creating an FTP script where you can upload to directories on your FTP without having an FTP program.. But I keep having an error with my script..
I Create the form, with some comming Variables, and make its action \\"connect.php\\" and heres what I Put on that Page..
<?
$conn = ftp(myserver);
ftp_login($conn, \\"usr\\", \\"pass\\");
ftp_systype($conn);
ftp_put($conn, \\"$file\\", FTP_BINARY);
ftp_quit($conn);
?>
Whats Up With it?