Let's get this over with: I'm a newbie! Hi!
I want to have PHP (windows xp & Apache) tell the system to copy some files to a specific location:
passthru("copy g:\dcim\10EOS1D*.jpg x:\htdocs\".$eventname)
Now the kicker is I don't want it to WAIT for the output... this may take 10-15 minutes using 1 gig microdrives!
I would like to spawn that copy process and redirect output from it to a log file.
What I am doing:
A month ago I dove into PHP/Apache to re-create a point-of-sale kiosk photo system I saw at an event. (I have programmed in other lang's.) It is done and works great, but now I need some bells and whistles:
I am writing a "control panel" for the operator to easily perform some operations. It has a form to input a description of the photos about to be uploaded, queries the disk drives to find out which one has a CF memory card and then needs to copy it to a directory.
Thanks in advance