Welcome Guest, Not a member yet? Register   Sign In
Uploading files always null
#1

Help, for some reason i cannot get the uploaded files... It always say "Call to a member function getSize() on null "

This is my controller function

PHP Code:
public function upload_macro(){
helper('form');
helper('file');
$data["msg"]="";
$myfile $this->request->getFile('myfile');
$myfile->getSize('mb');
return 
view('home_upload_macro',$data);


My View
PHP Code:
<form action="<?php echo base_url("home")?>/upload_macro" method="post">
 
    <input type="file" name="myfile" />
     <
input type="submit" value="upload"/>
</
form
Reply


Messages In This Thread
Uploading files always null - by machinex002 - 10-22-2019, 02:19 AM
RE: Uploading files always null - by machinex002 - 10-22-2019, 02:34 AM



Theme © iAndrew 2016 - Forum software by © MyBB