Posts by Alberto Cruz • 13 points
1 post
-
1
votes1
answer260
viewsQ: Problem with downloading FTP/PHP files
This is my code to force the download: <?php ftp_get($conn, $local_file , $server_file, FTP_BINARY); header('Content-Disposition: attachment; filename="' . $local_file . '"');…