my software showing a Grand Total like this 2.00192, 3.65826 but I want it to show like 2.00, 3.65 My codes:
<td rowspan="2"><label for="date" class="mb-0 col-sm-6"><?php echo display('grand_total')?>:</label>
<label class="col-sm-6 p-0 mb-0">
<input type="hidden" id="orggrandTotal" value="<?php echo $calvat+$itemtotal+$servicetotal-($discount+$pdiscount);?>" name="orggrandTotal">
<input name="grandtotal" type="hidden" value="<?php echo $calvat+$itemtotal+$servicetotal-($discount+$pdiscount);?>" id="grandtotal" />
<span class="badge badge-primary grandbg font-26"><strong>
<?php if($currency->position==1){echo $currency->curr_icon;}?>
<span id="caltotal"><?php echo $calvat+$itemtotal+$servicetotal-($discount+$pdiscount);?></span>
<?php if($currency->position==2){echo $currency->curr_icon;}?>
</strong></span></label></td>
</tr>
I found some result on google, but those are not working.