I have an application where I am prompting for a client side file with a "browse" button command within my html script. Once this information is entered I have a submit button to call my php script to perform an ftp_put to my server.
After some investigation it appears that when the "submit" button is pressed the file information from the "browse" input is stored to a tmp directory on the server, and a simple COPY command within php will store the file where I would like.
The problem is that I am trying to send the file to the server via FPT not HTTP, which appears to be what is happening once "submit" is entered.
Can anyone verify my findings, and if so, what would be the best approach to obtain my client side file information for ftp upload using php?
Any help is greatly appreciated.
skypilot