virt2/import/4_.php

40 lines
438 B
PHP
Executable File

<?php
$h = file_get_contents('import.xml');
echo $h;
//пошли по БД искать артикулы:
$arts=$db->get_massiv('m_tovar');
$count=count($arts);
unset($i);
for ($i=0; $i<$count; $i++){
$art=$arts[$i]['artikul'];
$lock=$arts[$i]['lock'];
$id=$arts[$i]['id'];
if ($lock=='0'){
if (find_txt($h, $art)==0){
$db->free_sql('UPDATE `m_tovar` SET `public` = ' . 0 . ' WHERE `id` = ' . $id);
}
}
}
?>