Jump to content

Number question


monkeybidz

Recommended Posts

I have these two: When miles are  equal or below 30 i am to get "Same Day", instead i am getting "8-9 Days". It seems to ignore the 0000's after the 3.

 

$english_format_number = number_format($miles);

 

 

if($miles <=30 && $service_type == 1){

    $etd = "Same Day.";

}

 

if($miles <=3000 && $service_type == 1){

    $etd = "8-9 Days.";

}

 

Any help is appreciated!

Link to comment
https://forums.phpfreaks.com/topic/70968-number-question/
Share on other sites

if($miles <=30 && $service_type == 1){
    $etd = "Same Day.";
}
//true so $etd = "Same Day.";

if($miles <=3000 && $service_type == 1){
    $etd = "8-9 Days.";
}
//Also true so NOW .. $etd = "8-9 Days.";

 

try this

if($miles <=3000 && $service_type == 1){
    $etd = "8-9 Days.";
}
if($miles <=30 && $service_type == 1){
    $etd = "Same Day.";
}

 

;)

Link to comment
https://forums.phpfreaks.com/topic/70968-number-question/#findComment-356793
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.