Advertisement
Guest User

DeleteImage

a guest
Jun 30th, 2016
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. public function deleteImage()
  2. {
  3.  
  4. $id = $this->input->post('idi');
  5.  
  6. if( !empty( $id ) && is_numeric( $id ) )
  7. {
  8.  
  9. unlink( base_url( $this->input->post('image') ) );
  10.  
  11. $this->img->deleteImage( $id );
  12.  
  13. }else{
  14.  
  15. redirect( 'properties' );
  16. }
  17.  
  18.  
  19.  
  20. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement