Files
crm.e5.pl/modules/EcmProducts/saveDesc.php
2024-04-27 09:23:34 +02:00

5 lines
190 B
PHP
Executable File

<?php
$GLOBALS['db']->query("update ecmproducts set add_status='".$_REQUEST['add_status']."',description='".$_REQUEST['desc']."' where id='".$_REQUEST['id']."'");
echo $_REQUEST['desc'];
?>