Jumat, 10 Agustus 2012

0 Decimal To Octal

<?php
if (isset ($_POST['decimal'])) {
    $decimal = $_POST['decimal'];
    $original = $_POST['decimal'];
    if (preg_match('/[^0-9]/', $decimal)){
        die("Maaf, inputan salah ...");
    }
    else {

          $oct = decoct($decimal);
   
      echo "<h2>Bilangan $original (desimal) dalam bentuk octal adalah $oct<h2>
      <h2><a href='".$_SERVER['PHP_SELF']."'>Back</a> to the script</H2>";
        }
}
else {
?>
<html>
    <head>
        <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
        <title></title>
    </head>
    <body>
       <form action="<?
        echo $_SERVER ['PHP_SELF'];
                    ?>"
             method="post">
           <h1> masukan bilangan decimal yang akan di canvert </h1>
           <input type="text" size="70" name="decimal"> <br>
           <input type="submit" value="Convert">
   
       </form>
   
    </body>
</html>
<?php
}
?>

0 komentar:

Posting Komentar

 

TELKOM's WORLD Copyright © 2011 - |- Template created by O Pregador - |- Powered by Blogger Templates