1. Advertising
    y u no do it?

    Advertising (learn more)

    Advertise virtually anything here, with CPM banner ads, CPM email ads and CPC contextual links. You can target relevant areas of the site and show ads based on geographical location of the user if you wish.

    Starts at just $1 per CPM or $0.10 per CPC.

Question About Numbers

Discussion in 'Programming' started by kc3, May 25, 2005.

  1. #1
    I need to make a PHP script that can tell how many characters are after the decimal and if there is only one character it will automatically add a 0 at the end of the number.
     
    kc3, May 25, 2005 IP
  2. exam

    exam Peon

    Messages:
    2,434
    Likes Received:
    120
    Best Answers:
    0
    Trophy Points:
    0
    #2
    Try
    $my_num = 4.5;
    echo number_format ($my_num, 2);
    // prints 4.50
    PHP:
    See also php.net
     
    exam, May 26, 2005 IP