Welcome Guest, Not a member yet? Register   Sign In
Removing characters before form_validation
#3

[eluser]roblarter[/eluser]
I have tried a very crude way of doing this to test that earlier, but this simply breaks CodeIgniter, I may need some guidance on how it is possible to for example str_replace strings within CodeIgniter and its callback routine


Code:
$this->form_validation->set_rules('addPostcode[]', 'Postcode', 'callback_clean_postcode');
Code:
function clean_postcode($str) {
    $str = str_replace(" ","",$str);
    return $str;
}

Cheers


Messages In This Thread
Removing characters before form_validation - by El Forum - 05-14-2009, 08:23 AM
Removing characters before form_validation - by El Forum - 05-14-2009, 08:29 AM
Removing characters before form_validation - by El Forum - 05-14-2009, 08:35 AM
Removing characters before form_validation - by El Forum - 05-14-2009, 08:43 AM
Removing characters before form_validation - by El Forum - 05-14-2009, 08:52 AM
Removing characters before form_validation - by El Forum - 05-14-2009, 09:07 AM
Removing characters before form_validation - by El Forum - 05-14-2009, 09:30 AM
Removing characters before form_validation - by El Forum - 05-14-2009, 09:45 AM
Removing characters before form_validation - by El Forum - 05-14-2009, 10:19 AM
Removing characters before form_validation - by El Forum - 11-02-2009, 01:59 PM
Removing characters before form_validation - by El Forum - 11-02-2009, 03:55 PM



Theme © iAndrew 2016 - Forum software by © MyBB