Jump to content

How to adding upload file in register customer, please help me.


Shara_AC

Recommended Posts

// upload image in authcontroller.php

$file = $_FILES['image'];

$allowed = array('png','jpeg','gif','jpg');

$extension = pathinfo($file['name'], PATHINFO_EXTENSION);

 

if (file_exists($file['tmp_name'])&& in_array($extension, $allowed)) {

$filename = uniqid()."-".basename($file['name']);

$filename = str_replace(' ','-', $filename);

$filename = strtolower($filename);

$filename = filter_var($filename, FILTER_SANITIZE_STRING);

$file['name']= $filename;

$uploader = new UploaderCore();

$uploader->upload($file);

 

$customer = new Customer();

$customer->image = $filename;

// dump($customer);

}

 

 

but this filename not save to database. can you help me. please!

 

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...