• 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: obtain the array from a checkbox group

obtain the array from a checkbox group 4 years 8 months ago #40437

  • dlm
  • dlm's Avatar
  • OFFLINE
  • Senior Boarder
  • Posts: 71
hi there,

Does anyone know how i can obtain the selected values from a checkbox list, to use it in Script called after form has been processed.

Example
Let's say I have list of fruit in a checkbox group.
1|Apples
2|Strawberry
3|Orange
4|Banana
And I have selected strawberry and orange. So I want this value 2,3 in one post-value to save it.

[Fruit] => Array
(
[0] => 2
[1] => 3
)

Any tips?
$_POST[?]
Last Edit: 4 years 8 months ago by dlm.
The administrator has disabled public write access.

obtain the array from a checkbox group 4 years 8 months ago #40438

  • adrianp
  • adrianp's Avatar
  • OFFLINE
  • RSJoomla! Official Staff
  • Posts: 631
  • Thank you received: 146
Hello,

You can always print out $_POST to view its exact structure when having your selections:
print_r($_POST);die;

Your checkbox array can be returned using:
//Replace myCheckboxExactNamehere with the name you've given to your checkbox (case sensitive)
$_POST['form']['myCheckboxExactNamehere']
This is not official customer support. To receive your support, submit a support ticket 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!