Как я могу подключиться и войти в mysql localhost на PHP с помощью этого HTML кода
<!DOCTYPE html> <html > <head> <meta charset="UTF-8"> <title>Online Student Service Center</title> </head> <body> <body> <div class="container"> <section> <form action="php/login.php" method="POST" > <h1>Login Form</h1> <div> <input type="text" placeholder="Student ID" required="" id="username" /> </div> <div> <input type="password" placeholder="Password" required="" id="password" /> </div> <div> <input type="submit" value="Log in" /> <a href="#">Lost your password?</a> <a href="#">Register</a> </div> </form><!-- form --> <div class="button"> <a href="admin.html">Admin</a> </div><!-- button --> <div class="button"> <a href="teacher.html">Teacher</a> </div><!-- button --> </section><!-- content --> </div><!-- container --> </body> <script src="js/index.js"></script> </body> </html>
Что я уже пробовал:
я хочу войти в систему из тестовой таблицы базы данных student, используя приведенный выше html-код