I have a form in codeigniter and would like to have a default value for my input as well as the set_value().
This is my input:
echo form_input('job_position',set_value('job_position'));
I have a set value in place and working but how can I add a default value of ’12’?
You can set a default if the value is empty.
From the codeigniter site: