Log in

View Full Version : Get PHP to rename a file



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

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

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

I'm really new at this

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


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