I need some help. I have been successful in uploading images and they are being stored on to my server. But the trouble is when I look in my database the file name is incorrect. Not sure why that it is.
According to my database the incorrect file name is "editor-fileName". But according to my saving feature of this line of code...
->upload( Upload::inst( $_SERVER['DOCUMENT_ROOT'] . '/images/.../profile__ID__.__EXTN__' )
This gives the correct file name on my server. But storing it into the database with this line of code is incorrect...
->upload( Upload::inst( $_SERVER['DOCUMENT_ROOT'] . '/images/.../profile__ID__.__EXTN__' )
->db( 'Table', 'ID', array(
'Field' => $pathToImg . Upload::DB_FILE_NAME
) )
But according to the documentation: https://editor.datatables.net/manual/php/upload#Database-information
It says that "Upload::DB_FILE_NAME File name (with extension)"
But it's not doing what I want it to. How do I tell it the File Name is what I saved it to? How do I do that?