redarrow Posted February 25, 2007 Share Posted February 25, 2007 how to change kilometres to miles please cheers. the below code shows kilometres 4.24 but i want miles Miles 2.63 <?php // CALCULATE THE DISTANCE BETWEEN THE TWO POINTS $hypot=sqrt(($distance_n*$distance_n)+($distance_e*$distance_e)); $text.='Distance between '.$pcodeA.' and '.$pcodeB.' is: '.round($hypot/1000,2).'kms'; echo $text; ?> Link to comment https://forums.phpfreaks.com/topic/40070-solved-how-to-change-kilometres-to-miles-please-cheers/ Share on other sites More sharing options...
nloding Posted February 25, 2007 Share Posted February 25, 2007 Add another function that converts kilometres to miles ... you can write it, but the conversion is: 1 kilometers = 0.621371192 miles Link to comment https://forums.phpfreaks.com/topic/40070-solved-how-to-change-kilometres-to-miles-please-cheers/#findComment-193801 Share on other sites More sharing options...
redarrow Posted February 25, 2007 Author Share Posted February 25, 2007 Thank you but the format is wrong what do i do to get example Distance between and is: 2.63miles but i got this Distance between and is: 4.24kms Distance between and is: 2638miles $text2.='Distance between '.$pcodeA.' and '.$pcodeB.' is: '.round($hypot*0.621371192).'miles'; Link to comment https://forums.phpfreaks.com/topic/40070-solved-how-to-change-kilometres-to-miles-please-cheers/#findComment-193807 Share on other sites More sharing options...
nloding Posted February 25, 2007 Share Posted February 25, 2007 Because you didn't divide $hypot before multiplying ... divide your response by 1000 and it's correct. Link to comment https://forums.phpfreaks.com/topic/40070-solved-how-to-change-kilometres-to-miles-please-cheers/#findComment-193812 Share on other sites More sharing options...
redarrow Posted February 25, 2007 Author Share Posted February 25, 2007 Thank u so much. $text2.='Distance between '.$post_a.' and '.$post_b.' is: '.round($hypot*0.621371192/1000,2).'miles'; Link to comment https://forums.phpfreaks.com/topic/40070-solved-how-to-change-kilometres-to-miles-please-cheers/#findComment-193816 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.