5 lines
152 B
PHP
5 lines
152 B
PHP
|
|
<?php
|
||
|
|
$GLOBALS['db']->query("update ecminvoiceouts set description='".$_REQUEST['desc']."' where id='".$_REQUEST['id']."'");
|
||
|
|
echo $_REQUEST['desc'];
|
||
|
|
?>
|