Contoh program yang dibentuk melalui Netbeans :
Konversi Bilangan Desimal To Hexa
Berikut adalah cara-caranya :
1. Create new php web page pada folder Praktek1.
Berikan nama : des2hex-web
2. Ketikkan Synthax berikut diantara <?php.................?>
<?php
if (isset($_POST['decimal'])) {
$des = $_POST['decimal'];
$original = $_POST['decimal'];
$hexa ='';
if (preg_match('/[^0-9]/',$des)){
die("Maaf. Inputan salah..");
}
else {
while($des>0){
$hasil=$des%16;
switch($hasil){
case 0: $hexa.="0"; break;
case 1: $hexa.="1"; break;
case 2: $hexa.="2"; break;
case 3: $hexa.="3"; break;
case 4: $hexa.="4"; break;
case 5: $hexa.="5"; break;
case 6: $hexa.="6"; break;
case 7: $hexa.="7"; break;
case 8: $hexa.="8"; break;
case 9: $hexa.="9"; break;
case 10: $hexa.="A"; break;
case 11: $hexa.="B"; break;
case 12: $hexa.="C"; break;
case 13: $hexa.="D"; break;
case 14: $hexa.="E"; break;
case 15: $hexa.="F";
default:break;
}
if($des/16==0){
$sisa=($des%16);
$hexa=$sisa;
}else{
$sisa=($des/16);
$des=$sisa%16;
}}echo strrev($hexa);
$result = strrev($hexa);
echo "Bilangan $original (desimal) dalam hexa adalah $result.
<a href='des2hex-web.php'>Back</a> to the script";
}
}
else {
?>
3. Kemudian ketikkan coding berikut diantara <html>........</html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title></title>
</head>
<body>
<form action="<?php echo $_SERVER['PHP_SELF']; ?>"
method="POST">
<h3>Masukkan bilangan Desimal disini (cepat!!):
</h3><input type="text" size="50" name="decimal">
<input type="submit" value="Konversikan!"
</form>
<?php
echo "<br>",$_SERVER['PHP_SELF'];
?>
</body>
</html>
4. Jangan lupa pula, ketikkan coding berikut ini pada akhir codingnya :
Komentar
Posting Komentar