As I am a newbie to PHP, I would like to know how can I place an output file in a shared network ftp? Privileges were given to me by the admin to load the file there but it required me to login to their network.
This is partial of my code:
include "include.php";
Output_Path = "\\SWMS\File\";
$Output_File = "report.xls";
$output_handle = fopen( $Output_Path . $Output_File , "w");
$ora_conn = get_ora_conn();

