• 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: Connecting form result to vTiger

Connecting form result to vTiger 14 years 8 months ago #8318

Hi, is there a way I can connect the results from the completed form to VTiger - an open source CRM solution?
The administrator has disabled public write access.

Re:Connecting form result to vTiger 14 years 8 months ago #8368

  • alexp
  • alexp's Avatar
  • OFFLINE
  • RSJoomla! Official Staff
  • Posts: 2253
  • Thank you received: 180
Hello,

Considering the high flexibility of the product... you can do just about anything. You can use the Scripts tab in order to map the submitted information to your other DB. For example (placed on the Scripts called on form process):
if (count($_POST) > 0) {
$_POST['form']['address'] = mysql_real_escape_string($_POST['form']['address']);
$_POST['form']['phone'] = mysql_real_escape_string($_POST['form']['phone']);
 
$option['driver'] = 'mysql';
$option['host'] = '127.0.0.1';
$option['user'] = 'user';
$option['password'] = 'password';
$option['database'] = 'database';
$option['prefix'] = '';
 
$database2 = & JDatabase::getInstance($option);
 
$database2->setQuery("INSERT INTO table (`address`,`phone`) VALUES ('".$_POST['form']['address']."','".$_POST['form']['phone']."')");
$database2->query();
}
Please note: my help is not official customer support. To receive your support, submit a ticket by clicking here
Regards,
RSJoomla! Development Team
The administrator has disabled public write access.

Re:Connecting form result to vTiger 13 years 4 months ago #12113

Hello,

There is a way to connect to vtiger out of RSFORMS, look at http://www.robusoft.us

It is possible to make a lead direct out of a form made with RSFORMS.

Greatings,

Henry
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!