summaryrefslogtreecommitdiff
path: root/new.php
blob: d6ccac3a4518faf6b0d9237f75d396985a8c6a17 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<?php require_once 'upload.php'; ?>
<?php require_once 'functions.php';?>
<?php require_once 'config.php';?>
<?php require_once 'music.php';?>

<?php 

$music = get_music_from_post();
if($music != null) {
    write_music_to_db($music);
}

// 跳转
header('Location: '.'index.php');


?>