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

[eluser]Shahgeb[/eluser]
simply at validation rule call the call back function
like

$rule['image_field_name'] = callback_verfiy_image();


and verfiy_image function sould be in controller
verfiy_image()
{
if(empty($_FILES['image_field_name']['name']['0'])){
$this->validation->set_message('verfiy_image', "You must have to specifiy image");
return false;
}

}

or any custom message which you want to show in set_message function


hopes it will work


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