11-19-2016, 06:58 PM
view file
Controllers file
I got the error
May I know where the wrong is? thanks
PHP Code:
<form method="post" action="" enctype="multipart/form-data">
<input type="file" name="f1">
<input type="submit" name="submit">
</form>
Controllers file
PHP Code:
public function upload()
{
if($_POST){
$file = $this->request->getFile('f1');
$newName = $file->getRandomName();
if ($file->isValid() && ! $file->hasMoved()){
$file->move(WRITEPATH.'uploads', $newName);
}
}
echo view('upload');
}
Code:
Method CodeIgniter\HTTP\Header::__toString() must not throw an exception, caught ErrorException: Array to string conversion
May I know where the wrong is? thanks