C
|
cgphp 10/25/2011 |
Post the tables fields and the query you are using. |
R
|
remyuk author 10/26/2011 |
Post the tables fields and the query you are using.
|
R
|
remyuk author 10/27/2011 |
Hi, Table 'lead' LeadID Client Name Campaign Name ID Product UserID Statut Date Company Name Registered Number Postcode Firstname Surname Address1 Address2 Address3 Town Type Table 'Lead management' LeadID ID Client Name Campaign Name Product Statut UserID Company Name and in 'Lead management' Edit page : Before record updated global $conn,$strTableName; $strSQLSave = "INSERT INTO Lead (Statut, LeadID) values ("; $strSQLSave .= $values["Statut"].","; $strSQLSave .= $values["LeadID"]; $strSQLSave .= ")"; db_exec($strSQLSave,$conn); Any idea...? Thanks for your answers..
|