Results 1 to 6 of 6

Thread: *solved* Make "3.66666666667" look like "3.66" ?

  1. #1

    Thread Starter
    Frenzied Member wpearsall's Avatar
    Join Date
    Feb 2002
    Location
    England / UK
    Posts
    1,065

    *solved* Make "3.66666666667" look like "3.66" ?

    Hey ya,

    I'm making a Top Site List at the moment, and In it i have a rating thing.

    Well To get the rating i am doing

    PHP Code:
    $rating $total_rating/$ratings
    But with this, i am getting:

    $rating = "3.66666666667";

    and what i want it to look like is:

    $rating = "3.66";

    How do i do this?
    Last edited by wpearsall; Oct 22nd, 2002 at 05:58 PM.
    Wayne

  2. #2
    Fanatic Member duc's Avatar
    Join Date
    Oct 2002
    Location
    STEAM
    Posts
    702
    ha, im sorry but i have to say a lame joke, take away 666666667!

  3. #3

    Thread Starter
    Frenzied Member wpearsall's Avatar
    Join Date
    Feb 2002
    Location
    England / UK
    Posts
    1,065
    Oh duh, never thought of dat, guess i should change my post to *solved* now huh ;0)

    BTW: Meant VIA PHP -- This is a Random number .. but this is the number got when i just tested out the rating system :P
    Wayne

  4. #4
    Stuck in the 80s The Hobo's Avatar
    Join Date
    Jul 2001
    Location
    Michigan
    Posts
    7,256
    Use the round() Function:

    Code:
    $rating = round("3.66666666667", 2);
    My evil laugh has a squeak in it.

    kristopherwilson.com

  5. #5
    Stuck in the 80s The Hobo's Avatar
    Join Date
    Jul 2001
    Location
    Michigan
    Posts
    7,256
    The precision part (second paramater) only works in PHP 4 and higher, by the way.
    My evil laugh has a squeak in it.

    kristopherwilson.com

  6. #6

    Thread Starter
    Frenzied Member wpearsall's Avatar
    Join Date
    Feb 2002
    Location
    England / UK
    Posts
    1,065
    cool thanks
    Wayne

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width