Contents

 
Home
PHPRunner 6.0 manual
Prev Page Next Page
 
 

Save new data in another table

 

To save new data in another table use Save new data in another table action.

Available in following events:

step11-1-2

yellowbulbNote: Change the values listed in red to match your specific needs.

//**********  Save new data in another table  ************

global $conn,$strTableName;

$strSQLSave = "INSERT INTO AnotherTable (Field1Field2) values (";

$strSQLSave .=  $values["Field1"].",";

$strSQLSave .=  $values["Field2"];

$strSQLSave .= ")";

db_exec($strSQLSave,$conn);

Converted from CHM to HTML with chm2web Standard 2.85 (unicode)