language.TUA.inc.php 713 B

1234567891011121314151617181920
  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 = "UPDATE qb_dictionary SET language = UPPER('".$newvals['language']."') ".
  14. " WHERE language = '".$oldvals['language']."' ";
  15. $rs = $adodb->Execute($sql);
  16. if (!$rs) echo $adodb->ErrorMsg();
  17. ?>