RE: Re[2]: [PHP] Moving Files/ Temporary Names

2003-07-14 Thread caspar kennerdale
In your application code ... you can implement a move() function that can either call the unix (mv) or windows (move) commands to move the file to another location (same permission restrictions apply). The thing about move is, its a copy + delete function in one, so you have to be careful about pe

Re[2]: [PHP] Moving Files/ Temporary Names

2003-07-14 Thread Burhan Khalid
On Monday, July 14, 2003, 11:04:48 PM, caspar wrote: ck> If you want the file to go into a holding location until your administrator ck> can approve it and move it to its real final location, then the holding ck> location should be the target of the move_uploaded_file(). This makes it up ck> to yo