Welcome Guest, Not a member yet? Register   Sign In
How to upload image file
#4

[eluser]sherpa[/eluser]
use callback function in the rules

Code:
$this->form_validation->set_rules('fashion_thumbnail_id',"Thumbnail Image",'callback__thumbnail_check');


    function _thumbnail_check($str){
        if($_FILES['fashion_thumbnail_id']['error'] == 4){
            $this->form_validation->set_message('_thumbnail_check','The %s image should be provided.');
            return FALSE;
        }
        else{
                return TRUE;
        }
    }


Messages In This Thread
How to upload image file - by El Forum - 03-31-2009, 05:57 AM
How to upload image file - by El Forum - 03-31-2009, 05:59 AM
How to upload image file - by El Forum - 04-01-2009, 12:26 AM
How to upload image file - by El Forum - 04-01-2009, 12:55 AM
How to upload image file - by El Forum - 04-01-2009, 01:46 AM
How to upload image file - by El Forum - 04-01-2009, 02:37 AM
How to upload image file - by El Forum - 04-01-2009, 02:44 AM
How to upload image file - by El Forum - 04-01-2009, 04:02 AM
How to upload image file - by El Forum - 04-01-2009, 05:38 AM
How to upload image file - by El Forum - 04-01-2009, 05:47 AM



Theme © iAndrew 2016 - Forum software by © MyBB