Answers for "error call to a member function getclientoriginalextension() on null"

2

Call to a member function getClientOriginalName() on null

<!-- use enctype -->
<form  action="/route" method="POST" enctype="multipart/form-data">
Posted by: Guest on May-27-2021
1

Call to a member function getClientOriginalExtension() on null

<form action="yout path" method="post" enctype="multipart/form-data">
Posted by: Guest on August-28-2021
-1

Error Call to a member function getClientOriginalExtension() on string

$imageName = rand(11111, 99999) . '.' . $request->file('image')->getClientOriginalExtension();
            $destinationPath = 'events';
            $fileName = rand(11111, 3232399999) . '.' . $extension;
            $upload_success = $image->move($destinationPath, $imageName);
Posted by: Guest on November-21-2021

Code answers related to "error call to a member function getclientoriginalextension() on null"

Browse Popular Code Answers by Language