I have a form with several fields containing currency values as I can add all these values in the post output
Example form
<form id="form2" name="form2" action="includes/acao.php?form=faturamento"
method="post" >
<input type='hidden' name='valor[{$id_finan}]' value='{960.00}' />
<input type='hidden' name='valor[{$id_finan}]' value='{960.00}' />
<input type='hidden' name='valor[{$id_finan}]' value='{960.00}' />
</form
acao.php
foreach($_POST["checkbox"] as $key=>$value){
echo $valor = mysql_real_escape_string($_POST['valor'][$key]);
// Retorno 960.00960.00960.00
}
How to bring this return already added