我希望在文件上传后重定向回我的主页,我目前有一个回显语句,表明文件已上传(完成后)。任何帮助将不胜感激!
<?php
$tags[]= $_POST['Sport'];
$tags[]= $_POST['bcTags1'];
$tags[]= $_POST['bcTags2'];
$tags[]= $_POST['bcTags3'];
$tags[]= $_POST['hiddenTag'];
$metaData = array(
'name' => $_POST['bcVideoName'],
'shortDescription' => $_POST['bcShortDescription'],
'tags' => $tags
);
# Rename the video file
$file = $_FILES['theVideoFile'];
rename($file['tmp_name'], '/tmp/' . $file['name']);
$file_location = '/tmp/' . $file['name'];
# Send video to Brightcove
$id = $bc->createMedia('video', $file_location, $metaData);
echo $id.'Uploaded Successfully!';
?>