I have a page up.php for uploading a file and after submit the other page up_process.php does the processing, read the file with
Code: Select all
$f = fopen ($_FILES['books']['tmp_name'], "r");I will use a cronjob to read the respective files.
How could I use the functionality I already have for processing manually uploaded files ?
Is there any smart way to call up_process.php from the script where I would read the FTP-ed files ?
Thank you