Hay guys, I have a code from my controller to upload a file
this code is working fine in cakephp 3
$myname = $this->request->getData()['file']['name']; $mytmp = $this->request->getData()['file']['tmp_name']; $mysize = $this->request->getData()['file']['size'];
But when I use CakePHP 4, this code doesn’t work
please help me, any reference to solve this problem
thankyou