Main Content

Sample script - FTP to get a file from within PHP

Archive - Originally posted on "The Horse's Mouth" - 2007-03-01 14:41:10 - Graham Ellis

A worked example from today's course - Only the password has been changed

<?php
$conn_id = ftp_connect("www.savethetrain.org.uk");
$login_result = ftp_login($conn_id, "savethetrain", "melksham");

if ((!$conn_id) || (!$login_result)) {
echo "FTP connection has failed!";
exit;
} else {
echo "Connected";
}

// get the file
$local = fopen("local.txt","w");
$result = ftp_fget($conn_id, $local,"httpdocs/trlog.txt", FTP_BINARY);

// check upload status
if (!$result) {
echo "FTP download has failed!";
} else {
echo "Downloaded ";
}

// close the FTP stream
ftp_close($conn_id);
?>