Sorry if the title make you confuse..
But, here is what I want to ask
CI just offer validation message via language file and through changing it on the fly..
But, it will change whole validation message of an error type..
And I want like this
Every field has its own error message..
For example I have “name”, and “age” field.
They both are required but each field will produce different “required” error message,
“name” field will produce “Hi, you must fill your name”
“age” field will produce “We need to know your age before we proceed this process”
I look into the core, but don’t have idea how to change it.
For now, I extend form_validation library and add some code to make it happen.
But it will run the validation process twice before produce preferred error message.
So, how can I do this?
Note: sorry for my English 😊