CluesShop.com

Friday, 21 February 2014

drupal7 price two digit number after decimal

$form ['tickets' . $ticket->id] ['price-' . $ticket->id] = array (
'#type' => 'textfield',
'#title' => t ( 'Price' ),
'#size' => 60,
'#maxlength' => 128,
'#title_display' => 'invisible',
'#attributes' => array ('placeholder' => 'Price'),
'#field_prefix' => '$',
'#default_value'=>sprintf("%.2f",$ticketPrice), //two number
);

No comments:

Post a Comment