Jump to content

Is Closest To...


verdrm

Recommended Posts

What do you define as closest to 100? You can just do a simple range comparison:

 

// if $total greater than 80, wrap $total in bold tags
if($total > 80)
{
   echo '<b>' . $total . '</b>';
}
// if $total greater than 50 but less than 80, wrap $total in itialic tags
elseif($total > 50 && $total < 80)
{
   echo '<i>' . $total . '</i>';
}
// $total is than 50, wrap $total in underline tags
elseif($total < 50)
{
   echo '<u>' . $total . '</u>';
}

Link to comment
https://forums.phpfreaks.com/topic/97412-is-closest-to/#findComment-498449
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.