[eluser]_TTT_[/eluser]
I have a form and required fields. And also I have photo upload field its not required, but user must knows if they try to upload big photo or wrong file type.
I wrote:
Code:
if(($this->validation->run() == FALSE) OR ($this->upload->do_upload() == FALSE))
{
...Show validataion and Photo upload errors...
}
its work but if upload field is empty it is error:
You did not select a file to upload.
because error "You did not select a file to upload." also return FALSE.
how to solve this problem ?