Files

5 lines
152 B
PHP
Raw Permalink Normal View History

2025-05-12 15:44:39 +00:00
<?php
$GLOBALS['db']->query("update ecminvoiceouts set description='".$_REQUEST['desc']."' where id='".$_REQUEST['id']."'");
echo $_REQUEST['desc'];
?>