before the update statement
$_POST['budget'] = str_replace(",",".",$_POST['budget']);
This will replace each comma with a dot in $_POST['budget'];
When you display, do the opposite
echo str_replace(".",",",$recordset_name['budget']);
--
Gareth
http://www.phploginsuite.co.uk/
PHP Login Suite V2 - 34 Server Behaviors to build a complete
Login system.