I think I set this $config['global_xss_filtering'] = TRUE; in fuel/application/config.php.
Is this the reason that turn on the global filter?
(This is the reason why that my iframe got sanitize right?)
Thank you very much.
If I would like to call a method from one of the controller and use this in the _variables/global.php like,
$CI =& get_instance(); /* Email Form */ $CI->load->controller('send_email'); $vars['email_form'] = $CI->send_email->genera…
I have another question about using 2 forms please.
I observed that if one of the form does not pass the validation, it will display error in both forms.
In this case, what is the best way to display the error in the correct form?
Thank you very m…
I have another question about updating to Fuel 1.0 from Fuel 0.9.3?
In this case which files or folder I need to update?
Thank you very much for helping me understand about how the custom field work.
I would like to ask you how can I pass paramete…
Do you have any tutorial about how to use "custom" field?
I am still confusing about how to pass the function into this custom field type.
Do I need to add the new function in Form_builder class?
How to set up this function to display like this sim…
For example,
if I would like to add text field without label. How could I use form_builder to do that?
Also, when I use the 'mode' => 'enum' with above code.
$fields['radio'] = array('required' => TRUE, 'label' => 'Test Radio:', 'options…