ช่วยด้วยครับ ผมไม่สามารถใช้ golive ได้

คือ login ของผมอ่ะครับ มันต้องส่ง ไปที่หลังบ้าน ซึ่งหลังบ้าน ก็ต้องใช้ภาษา php ใช่ไหมครับ ส่วน login เป็น html แล้วผมกด live sever vs code
ขึ้นหน้า login ของ html ใช่ไหมครับ พอผม กดเข้าสู่ระบบ ที่จะต้องส่งไปหน้า main ก็ไม่ได้ เพราะ live sever เหมือนมันไม่ รับรอง การแสดงผลของ php อ่ะครับ ซึ่งการ login มันต้องส่งข้อมูล ไปที่ php ว่าตรวจสอบถูกหรือไม่ แต่ถ้ารัน ใน xampp ได้ครับ แต่ผมเป็นกังวลว่าถ้าผมไปรันขึ้น sever จริงๆมันจะได้ไหม 
นี้คือโค้ด html ครับ login
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Login</title>
    <link href="./output.css" rel="stylesheet">
    <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css"
        integrity="sha512-SnH5WK+bZxgPHs44uWIX+LLJAJ9/2PkPKZ5QiAj6Ta86w+fsb2TkcmfRyVX3pBnMFcV7oQPJkl9QevSCWr3W6A=="
        crossorigin="anonymous" referrerpolicy="no-referrer" />
</head>
<body>
    <div class="flex justify-center items-center bg-cover h-screen bg-center "
        style="background-image: url('/images/bg.png'); ">
        <div class="relative w-96 p-6 shadow-lg drop-shadow-2xl  bg-gray-700 rounded-lg">
            <div
                class="absolute top-[-3rem] left-1/2 transform -translate-x-1/2 -translate-y-1/4  bg-white rounded-full mb-5">
                <img src="/images/logo.png" alt="Profile Icon" class="w-32 h-32 rounded-full">
            </div>
            <form action="process-login.php" method="POST" class="mt-5 w-full">
                <div class="mb-4 ">
                    <label for="phone" class="block text-gray-200 mb-2 "> <i class="fa-solid fa-phone "></i>
                    </label>
                    <input name="telephon_account" type="text" id="phone"
                        class="w-full p-2 border border-gray-300 rounded mt-1 focus:outline-none focus:ring-2 focus:ring-blue-500 "
                        placeholder="เบอร์โทรศัพท์" required>
                </div>
                <div class="mb-4">
                    <label for="password" class="block text-gray-200 mb-2"><i class="fa-solid fa-lock"></i>
                    </label>
                    <input name="password_account" type="password" id="password"
                        class="w-full p-2 border border-gray-300 rounded mt-1 focus:outline-none focus:ring-2 focus:ring-blue-500"
                        placeholder="รหัสผ่าน" required>
                </div>
                <div class="text-center mt-6">
                    <button type="submit"
                        class="w-auto bg-blue-500 text-white py-2 px-4 rounded-lg hover:bg-blue-700 active:bg-violet-700 focus:outline-none focus:ring focus:ring-violet-300 transition duration-200">เข้าสู่ระบบ</button>
                </div>
                <div class="text-center mt-3">
                    <a href="Register.html" class=" text-white font-normal hover:text-sky-500">สมัครสมาชิก</a>
                </div>
            </form>
        </div>
    </div>
</body>
</html>
-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
นี่คือโค้ด php หลังบ้านครับ
-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
<?php
session_start();
$open_connect = 1;
require('connect.php');
if(isset($_POST['telephon_account']) && isset($_POST['password_account'])){
    $telephon_account = htmlspecialchars(mysqli_real_escape_string($connect, $_POST['telephon_account']));
    $password_account = htmlspecialchars(mysqli_real_escape_string($connect, $_POST['password_account']));
    $query_check_account = "SELECT * FROM account WHERE telephon_account = '$telephon_account'";
    $call_back_check_account = mysqli_query($connect, $query_check_account);
    if(mysqli_num_rows($call_back_check_account) == 1){
        $result_check_account = mysqli_fetch_assoc($call_back_check_account);
        $hash = $result_check_account['password_account'];
        $password_account = $password_account . $result_check_account['salt_account'];
        if(password_verify($password_account, $hash)){
            if($result_check_account['role_account'] == 'member'){ //บทบาท member
                $_SESSION['id_account'] = $result_check_account['id_account'];
                $_SESSION['role_account'] = $result_check_account['role_account'];
                die(header('Location: main.php'));
            }elseif($result_check_account['role_account'] == 'admin'){ //บทบาท admin
                $_SESSION['id_account'] = $result_check_account['id_account'];
                $_SESSION['role_account'] = $result_check_account['role_account'];
                die(header('Location: admin.php'));
            }
        }else{
            die(header('Location: Login.html')); //รหัสผ่านไม่ถูกต้อง
        }
    }else{
        die(header('Location: Login.html')); //ไม่มีอีเมลนี้ในระบบ
    }
}else{
    die(header('Location: Login.html')); //กรุณากรอกข้อมูล
}
?>
ช่วยให้คำปรึกษาทีครับ คือผม กลัวว่างานที่ผมทำมาจะไม่สามารถ ขึ้น sever ได้ครับ
แก้ไขข้อความเมื่อ
แสดงความคิดเห็น
อ่านกระทู้อื่นที่พูดคุยเกี่ยวกับ  PHP วิศวกรรมคอมพิวเตอร์ HTML MySQL การพัฒนา Web Application
โปรดศึกษาและยอมรับนโยบายข้อมูลส่วนบุคคลก่อนเริ่มใช้งาน อ่านเพิ่มเติมได้ที่นี่