language.TIA.inc.php 816 B

12345678910111213141516171819202122
  1. <?php
  2. #$this; // object reference
  3. #$this->dbh; // initialized MySQL database handle
  4. #$this->key; // primary key name
  5. #$this->key_type; // primary key type
  6. #$this->key_delim; // primary key deliminator
  7. #$this->rec; // primary key value (update and delete only)
  8. #$newvals; // associative array of new values (update and insert only)
  9. #$oldvals; // associative array of old values (update and delete only)
  10. #$changed; // array of keys with changed values
  11. require_once 'auth.php';
  12. global $adodb;
  13. $sql = "INSERT INTO qb_dictionary (language, module, field, dict) ".
  14. " SELECT UPPER('".$newvals['language']."'), module, field, dict ".
  15. " FROM qb_dictionary ".
  16. " WHERE language = 'ENGLISH' AND module IN ('MAIN MENU', 'GENERAL') ";
  17. $rs = $adodb->Execute($sql);
  18. if (!$rs) echo $adodb->ErrorMsg();
  19. ?>