12345678910111213141516171819202122 |
- <?php
-
-
-
-
-
-
-
-
-
- require_once 'auth.php';
- global $adodb;
- $sql = "INSERT INTO qb_dictionary (language, module, field, dict) ".
- " SELECT UPPER('".$newvals['language']."'), module, field, dict ".
- " FROM qb_dictionary ".
- " WHERE language = 'ENGLISH' AND module IN ('MAIN MENU', 'GENERAL') ";
- $rs = $adodb->Execute($sql);
- if (!$rs) echo $adodb->ErrorMsg();
- ?>
|