• Downloading from our site will require you to have a paid membership. Upgrade to a Premium Membership from 10$ a month today!

    Dont forget read our Rules! Also anyone caught Sharing this content will be banned. By using this site you are agreeing to our rules so read them. Saying I did not know is simply not an excuse! You have been warned.

Admin

Well-Known Member
Staff member
Administrator
Demo ảnh
j8vd.png

Tạo tập tin bất kỳ .php dán code này vào
PHP:
<?php
echo '<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE html PUBLIC "-//WAPFORUM//DTD XHTML Mobile 1.0//EN" "http://www.wapforum.org/DTD/xhtml-mobile10.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="vi" itemscope itemtype="http://schema.org/Blog">
<head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
    <title>Bộ chuyển đổi Binary - Decimal - Hexadecimal</title>
</head>
<body>
<center><b>Bộ chuyển đổi đơn giản: Hệ nhị phân - Hệ thập phân - Hệ cơ số mười sáu (hexa)</b></center>';
if(isset($_GET['bin'])){
    $dec = bindec($_GET['bin']);
    $hex = strtoupper(dechex($dec));
    echo ''.$_GET['bin'].'<sub>2</sub> -> '.$dec.'<sub>10</sub> -> '.$hex.'<sub>16</sub>';
    echo '<br />';
} elseif(isset($_GET['dec'])){
    $bin = decbin($_GET['dec']);
    $hex = strtoupper(dechex($_GET['dec']));
    echo ''.$_GET['dec'].'<sub>10</sub> -> '.$bin.'<sub>2</sub> -> '.$hex.'<sub>16</sub>';
    echo '<br />';
} elseif(isset($_GET['hex'])){
   
    $dec = hexdec($_GET['hex']);
    $bin = decbin($dec);
    echo ''.strtoupper($_GET['hex']).'<sub>16</sub> -> '.$bin.'<sub>2</sub> -> '.$dec.'<sub>10</sub>';
    echo '<br />';
}

echo 'binary (hệ nhị phân): <br /><form method="get"><input type="text" name="bin" value="" /><br /><input type="submit" value="Chuyển đổi" /></form><br />';

echo 'decimal: (hệ thập phân)<br /><form method="get"><input type="text" name="dec" value="" /><br /><input type="submit" value="Chuyển đổi" /></form><br />';

echo 'hexadecimal: (hệ thập lục phân)<br /><form method="get"><input type="text" name="hex" value="" /><br /><input type="submit" value="Chuyển đổi" /></form><br /><br />';

echo '</body></html>';
?>
Chúc các bạn thành công!
 

Facebook Comments

New posts New threads New resources

Back
Top