Rename upload file
- Single Page
Posted 27 January 2015 - 17:39 PM
Posted 29 January 2015 - 09:49 AM
well my friend u can use callback_after_insert
there once u have inserted - u get the id of the record saved.. u can use it .. to rename the file tht was uploaded along with that record.
Rename the file physically and also update the record with the same name...
Happy GCing :)
Posted 16 February 2015 - 19:02 PM
Yes, I found the solution ;)
$crud->callback_after_insert(array($this, 'rename_img_db')); public function rename_img_db($post_array,$primary_key){ //Here goes the get and set querys with your $primary_key }