I use "File Uploading Class" of CodeIgniter to upload files; my problem is later on I'm using the uploaded image name and although I already used the following code to give the meaning full name, Users may have already saved the same name and the new file will be like "John1","John2", "John3",...
...
$config['file_name'] = $this->input->post("employeeName");
$this->load->library('upload', $config);
Is there any way to figure out the real name which was used to save the file with the added extensions?
I hope my questions is clear, but if you need more clarification, please just let me know which part you need more clarification.
Thanks