• 1

Read this first!

We do not monitor these forums. The forum is provided to exchange information and experience with other users ONLY. Forum responses are not guaranteed.

However, please submit a ticket if you have an active subscription and wish to receive support. Our ticketing system is the only way of getting in touch with RSJoomla! and receiving the official RSJoomla! Customer Support.

For more information, the Support Policy is located here.

Thank you!

TOPIC: Validating textfield min 2 words -regex validation

Validating textfield min 2 words -regex validation 10 years 9 months ago #28316

Hi

Is there somebody out there who can tell me who to validate the content of a textfield?

I need it to check that min 2 words is entered in the formfield.

I have tired using the regex-option, but i havent any success.
The administrator has disabled public write access.

Validating textfield min 2 words -regex validation 10 years 9 months ago #28317

  • cosmin.cristea
  • cosmin.cristea's Avatar
  • OFFLINE
  • Platinum Boarder
  • Posts: 756
  • Thank you received: 144
Please try the following code in the PHP Scripts called on form process:
if (count(str_word_count($_POST['form']['name_of_field'], 1)) < 2)
$invalid[] = RSFormProHelper::getComponentId("name_of_field");
My help is not official customer support. To receive your support, submit a ticket by clicking here
The administrator has disabled public write access.
The following user(s) said Thank You: casper.nhr.hansen

Validating textfield min 2 words -regex validation 10 years 9 months ago #28318

SUPER!

Thank you very much for your fast and usefull answer :)
The administrator has disabled public write access.
  • 1

Read this first!

We do not monitor these forums. The forum is provided to exchange information and experience with other users ONLY. Forum responses are not guaranteed.

However, please submit a ticket if you have an active subscription and wish to receive support. Our ticketing system is the only way of getting in touch with RSJoomla! and receiving the official RSJoomla! Customer Support.

For more information, the Support Policy is located here.

Thank you!