I want to add a word or string at the end of every file I upload in in php script. For example, music.mp3 would be music(jarahub.xyz).mp3 after been uploaded. I tried achieving that with this line of code
$filename = $_FILES['myfile']['name']. '(Jarahub.xyz)';
But it ended up changing the file extension please can anyone help me with a more efficient code.