Files
crm.twinpol.com/modules/EcmPrices/updatepc.php

7 lines
284 B
PHP
Raw Normal View History

2025-05-12 15:44:39 +00:00
<?
$w=$GLOBALS['db']->query("select productcategory,productcategoryen from productcategory");
while($r=$GLOBALS['db']->fetchByAssoc($w)){
$GLOBALS['db']->query("update ecmproductcategories set name_en='".$r['productcategoryen']."' where name like '".$r['productcategory']."'");
}
?>