Validar precios de artículos, incluyendo comas - Codeigniter
AUTOR PREGUNTA #1
-
¿Tienes la misma pregunta? Yo también
Esto también te interesa!
PREGUNTAS SIMILARES
#2
#3
function precio_con_coma ($str) { return preg_match('/^[0-9,]+$/', $str); }
Y luego con el form_validation, llamas la función en la regla:
$this->form_validation->set_rules('input', 'Input', 'precio_con_coma');