If I change the site name, I want the folder name to change, how can I do that? i think this is changing the filename
JavaScript
x
$OldNameFolder=$path.$OldName;
$NewNameFolder=$path.$NewName;
rename('$OldNameFolder','$NewNameFolder');
Advertisement
Answer
Try remove variables in string
JavaScript
rename($OldNameFolder,$NewNameFolder);