10 lines
256 B
PHP
10 lines
256 B
PHP
<?php
|
|
|
|
if($_REQUEST['set']!="" && $_REQUEST['record']!=""){
|
|
|
|
$w=$GLOBALS['db']->query("update ecmworkers set active2='".$_REQUEST['set']."' where id='".$_REQUEST['record']."'");
|
|
|
|
}
|
|
|
|
header("Location: index.php?action=index&module=EcmWorkers");
|
|
?>
|