Love Fuel?    Donate

FuelPHP Forums

Ask your question about FuelPHP in the appropriate forum, or help others by answering their questions.
i validation i want to check by validation expression
  • i want to check validation for india mobile number the expression is ^[7-9][0-9]{9}$
    no can u tell me which rule to select and how to enter it and check it

  • HarroHarro
    Accepted Answer
    You use the "match_pattern" rule to match any regex against the input field.

    You can't use string notation (because of the brackets used in the regex string, you need to use add_rule:

    ->add_rule('match_pattern', '^[7-9][0-9]{9}$');

Howdy, Stranger!

It looks like you're new here. If you want to get involved, click one of these buttons!

In this Discussion