4 lines
184 B
PHP
4 lines
184 B
PHP
|
|
<?php
|
||
|
|
$GLOBALS['db']->query("update ecmproducts set flag='".$_REQUEST['flag']."' where id='".$_REQUEST['record']."'");
|
||
|
|
header("Location: index.php?module=EcmProducts&action=index");
|
||
|
|
?>
|