• 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: capital words

capital words 16 years 9 months ago #5204

  • jose_sc
  • jose_sc's Avatar
  • OFFLINE
  • Fresh Boarder
  • Posts: 1
It is possible to capitalize words with PHP functions?

in scripts window like

$Name=ucfirst($Name)

or User Emails window as:

{ucfirst(Name:value)}


thanks<br><br>Post edited by: jose_sc, at: 2008/10/22 16:58
The administrator has disabled public write access.

Re:capital words 16 years 9 months ago #5218

  • alexp
  • alexp's Avatar
  • OFFLINE
  • RSJoomla! Official Staff
  • Posts: 2253
  • Thank you received: 180
Hello,

In order to this please type in this code in the \"Scripts\" tab, on \"Scripts called on form process\":
 if(isset($_POST['form']['formId'])){
   foreach($_POST['form'] as $key=&gt;$value)
      $_POST['form'][$key] = ucfirst($value);
}

This should do the trick
Please note: my help is not official customer support. To receive your support, submit a ticket by clicking here
Regards,
RSJoomla! Development Team
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!