• 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: Using RSFormPro to take Payment Card Details

Using RSFormPro to take Payment Card Details 10 years 4 months ago #29756

  • andybon
  • andybon's Avatar
  • OFFLINE
  • Fresh Boarder
  • Posts: 7
Anyone using RSFormPro to take credit / debit card details?

I see it has a card number validation check.

Not sure if anyone is experienced in card payments here, but I think the only 'tweak' needed (for PCI compliance) is to have a field setting such that card details are not ALL stored in the database but instead first x digits go to database and last x digits go to admin in the email.

Grateful for any discussion on pros / cons / successes / failures of using RSForm to collect card details.
The administrator has disabled public write access.

Using RSFormPro to take Payment Card Details 9 years 4 months ago #33512

  • it7admin
  • it7admin's Avatar
  • OFFLINE
  • Fresh Boarder
  • Posts: 9
Hi,

Did you ever get a reply to this question ?

Thanks,

Steve
The administrator has disabled public write access.

Using RSFormPro to take Payment Card Details 9 years 4 months ago #33538

  • cosmin.cristea
  • cosmin.cristea's Avatar
  • OFFLINE
  • Platinum Boarder
  • Posts: 756
  • Thank you received: 144
Hi guys,

By default, RSForm!Pro does not have a functionality to "alter" the data sent through a field. However, due to its flexible nature, this can be achieved through the scripts called on form process/after form process.

You can find information on RSForm!Pro PHP Scripting areas here:
https://www.rsjoomla.com/support/documentation/rsform-pro/getting-started/php-scripts.html
https://www.rsjoomla.com/support/documentation/rsform-pro/getting-started/php-email-scripts.html

PS: The snippet below will create a string in this format: 'XXXX-1234 <- where 1234 are the last 4 characters sent through the field
$credit_card_num = substr_replace($_POST['form']['credit_card_field_name'], 'xxxx-', 0, -4);
My help is not official customer support. To receive your support, submit a ticket by clicking here
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!