I did not know how to title this post since this is an unusual way to use PHP. I have a "desktop" application written in PHP that I wrote back in 2000. I use this app to mass edit and append many files into one large file. This is all done locally on my pc.
I use "input type=file" to select each file to work with. After selecting the files I start the processing. In IE6 the input passed on the full file path (example "c:\somefolder\somefile.txt"). I use this path to access each file and work with them. Firefox and IE8 now only pass on the file name (example "somefile.txt"). This does not help me since I need a full file path.
Any ideas on how to fix this? Yes I know PHP is not truly appropriate for what I am doing but this program has worked for many years and I don't want to rewrite it into a desktop app until it is necessary.
Thanks for the help,