删除文件扩展名[关闭]

I have this:

$name = $_FILES['file']['name'];
$skin_name = $_POST['nameXXXXXC'];
$price = $_POST['amount'];
$by = $_COOKIE['userName'];

$KS84JMCN = substr($name, 0,strrpos($name,'.'));

mysql_query("
INSERT INTO `Skins`(
    `Name`,
    `Skin_Name`,
    `Price`,
    `Made_By`
) VALUES (
    '$KS84JMCN',
    '$name',
    '$price',
    '$by'
)");

But it's not removing the file extension, in the database, under 'Name' is the file name but with .png at the end, so it's not removing the file extension.

$name = 'lol.lol.jpg';

echo pathinfo($name, PATHINFO_FILENAME); // lol.lol