我创建了一个在 vTiger 之外的网络表单,我想将其推送到 vTiger 使用的数据库中。
这是将数据推送到数据库的 SQL 代码:
$sql="INSERT INTO vtiger_potential(potentialname)VALUES('$company_name', '$potential_no')";
这是我似乎得到的错误:
Cannot add or update a child row: a foreign key constraint fails (`vtigercrm530/vtiger_potential`, CONSTRAINT `fk_1_vtiger_potential` FOREIGN KEY (`potentialid`) REFERENCES `vtiger_crmentity` (`crmid`) ON DELETE CASCADE)
有想法该怎么解决这个吗?