public function add_video()
{
if(isset($_POST['add']) && $_POST['add']=='ADD')
{
move_uploaded_file($_FILES['video']['tmp_name'],'uploadimg/'.$_FILES['video']['name']);
$data = array('id'=>'', 'title'=>$_POST['title'],'video'=>$_FILES['video']['name'],'url'=>$_POST['link'],'status'=>$_POST['status'],'date'=>$_POST['date']);
$this->Dbfunction->insertdata('videos',$data);
redirect(base_url().'index.php/admin/videos');
}
}
And I Got Following Error
Warning: POST Content-Length of 177938307 bytes exceeds the limit of 8388608 bytes in Unknown on line 0
Database Table Structure is follows