Convert One Base to Another Base Script

Convert One Base to Another Base Script is use to convert a current base number to new another base number.

Demo :



Base No :   Current Base
New Base
 

Example :

Type Base No Like : 100
Type Current Base No Like: 10
Type Convert Base No Like: 6

Following code is convert a current base number to new base number if you need to copy and use to your website.


<?php
  $Base_No = 100;
  $Current_Base_No = 10;
  $Convert_Base_No = 6;
  $result = base_convert($Base_No,$Current_Base_No,$Convert_Base_No);
  echo $result;
?>

In the above code base number is 100 and current base is 10 and convet base is 6. when you click submit button then base number 100 will pass to base_convert() function and finally output will display 244.

Free Download Script :

If you need Convert One Base to Another Base Script click and download from following link.

Download




Content