• 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: Dynamically control the mapping values

Dynamically control the mapping values 10 years 6 months ago #29784

  • ofuuzo
  • ofuuzo's Avatar
  • OFFLINE
  • Fresh Boarder
  • Posts: 1
Hi,

I have two fields (first_name and last_name) which I do want to concatenate their values and create a third value and insert the new value to Joomla database table, _content.

I have put the following at PHP scripts, “Script called on form process”:
foreach($mappings as $mapping)
{
$data = unserialize($mapping->data);
$data["first_name"] = strip_tags($_POST);
$data["last_name"] = strip_tags($_POST);
$mapping->data = serialize($data);
}

I will like to insert the merged value into “fulltext (mediumtext)” when a new sql query is created,
How can I achieve this?
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!