Files
crm.e5.pl/modules/EcmProducts/setFlag.php

4 lines
184 B
PHP
Raw Permalink Normal View History

2024-04-27 09:23:34 +02:00
<?php
$GLOBALS['db']->query("update ecmproducts set flag='".$_REQUEST['flag']."' where id='".$_REQUEST['record']."'");
header("Location: index.php?module=EcmProducts&action=index");
?>