Files
crm.e5.pl/modules/EcmPriceKopias/updatepc.php
2024-04-27 09:23:34 +02:00

7 lines
284 B
PHP

<?
$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']."'");
}
?>