• 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: Pass the values within a form

Pass the values within a form 4 years 1 month ago #41057

  • bleser
  • bleser's Avatar
  • OFFLINE
  • Fresh Boarder
  • Posts: 3
Hi there,

I need a script/code snippet in which the value of a radio-button-field "{Day: value}" is transferred/passed to another (hidden) field "{Class: value}".
The values are to be transferred within a form.

Many thanks
Tommy ;-)
The administrator has disabled public write access.

Pass the values within a form 4 years 1 month ago #41067

  • iceferret
  • iceferret's Avatar
  • OFFLINE
  • Gold Boarder
  • Posts: 246
  • Thank you received: 64
If you want the value from Day passed to Class when submit is clicked, In scripts called on form process add
$_POST['form']['Class'] = $_POST['form']['Day'];
If you can keep your head when all about you are losing theirs, then you obviously don't understand the situation!
Last Edit: 4 years 1 month ago by iceferret.
The administrator has disabled public write access.

Pass the values within a form 4 years 1 month ago #41068

  • bleser
  • bleser's Avatar
  • OFFLINE
  • Fresh Boarder
  • Posts: 3
thank you, has worked!
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!