|
|
To insert a record into another table use Insert a record into another table
action.
Note: Change the values listed in
red to match your specific needs.
//********** Insert a record into another table ************
global $conn;
$strSQLInsert = "insert into TableName (Field1, Field2) values (Value1, Value2)";
db_exec($strSQLInsert,$conn);
|
|