PDA

View Full Version : Get PHP to rename a file


evan
10-23-2008, 09:24 PM
What is the command to rename a file with PHP

techietim
10-23-2008, 09:32 PM
rename() (http://php.net/rename)

evan
10-24-2008, 08:22 PM
as in :
oldfilename.jpg rename(newfilename.jpg)

I'm really new at this

techietim
10-24-2008, 08:34 PM
Not quite:

rename('oldfile.jpg', 'newfile.jpg');