Files
crm.twinpol.com/modules/EcmDevices/deleteProductFromPriceBook.php
2025-05-12 15:44:39 +00:00

7 lines
264 B
PHP
Executable File

<?
if($_REQUEST['id']){
if($GLOBALS['db']->query("update ecmdevices_ecmproducts set date_modified='".date("Y-m-d H:i:s")."',modified_user_id='".$_SESSION['authenticated_user_id']."',deleted='1' where id='".$_REQUEST['id']."'"))print "ok";
else print "no";
}
?>