I have the following code to grab the filename when browsed for and uploaded and take off the . and the extension
$FileName=current(explode('.', $_FILES['File']['name']));
only it causes problems if there is a dot in the file name, like
04.05.2007_filename.mp3
Is there another way to do this?