Log in

View Full Version : Spliter OR Delete



XAKERA
02-13-2008, 08:19 AM
I am made mp3 file upload system. and please help me in one: When file upload before upload change name if filename is Artist_-_musicname.mp3 change name with this Artist - musicname.mp3 I want delete _ this symbol.
THanks

Twey
02-13-2008, 09:32 AM
str_replace('_', ' ', $tr)

james438
02-13-2008, 09:34 AM
$name=str_replace('_',' ',$name);
That should do the trick.

heh, ya beat me Twey ;)

EDIT: Fixed.

Twey
02-13-2008, 09:38 AM
Heh. Note, the OP wanted to replace underscores ('_') with spaces (' ').

XAKERA
02-13-2008, 12:49 PM
Thanks work it. THanks all