PHP ข้อมูลการเชื่อมต่อระหว่าง Client(Browser) กับ Web Server

ตัวอย่าง code

<!DOCTYPE html>
<html>
    <head>
        <title>ตารางข้อมูลการเชื่อมต่อระหว่าง Client(Browser) กับ Web Server</title>
        <meta charset="UTF-8">
        <meta name="viewport" content="width=device-width, initial-scale=1.0">
        <link rel="stylesheet" href="w3-css.css">
    </head>
    <body class="w3-container">
        <table class="w3-table  w3-bordered w3-card-4">
            <h3 class="w3-center">ตารางข้อมูลการเชื่อมต่อระหว่าง Client(Browser) กับ Web Server</h3>
            <?php
            foreach ($_SERVER as $key => $value) {
                echo "<tr>"
                . "<td>"."\$_SERVER['$key']"."</td>"
                . "<td>"."$value"."</td>"
                . "</tr>";
            }
            ?>
        </table>
        <img width="">
    </body>
</html>


ไม่มีความคิดเห็น:

แสดงความคิดเห็น