• 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: If in script called on form process - How?

If in script called on form process - How? 8 years 2 months ago #36380

This is what i want. If "12|Generalforsamling" is chosen in dropdown (referat_catid) I want the hidden field (catid_type) to be valued "Generalforsamling". But catid_type remains empty. What i'm i doing wrong here?

I'm doing this in script called on form process:

if ($_POST == '12')
{
$_POST = "Generalforsamling'';
}
The administrator has disabled public write access.

If in script called on form process - How? 8 years 2 months ago #36438

  • qubertman
  • qubertman's Avatar
  • OFFLINE
  • Fresh Boarder
  • Posts: 15
  • Thank you received: 5
if ($_POST['form']['referat_catid'][0] == '12')
{
$_POST['form']['catid_type'] = 'Generalforsamling';
} 
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!