Php method= "post" не выполняется в действии формы
у меня есть php-файл, который имеет html-форму
<form action="CustomerLoginHTML.php" method="POST">
после нажатия кнопки даже выполнить форму следует выполнить php-файл внутри нее.
но он не выполняет php-часть, но почему?
Что я уже пробовал:
<!DOCTYPE html> <!-- To change this license header, choose License Headers in Project Properties. To change this template file, choose Tools | Templates and open the template in the editor. --> <html> <head> <title>Sign in</title> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <link rel="stylesheet" type="text/css" href="CSS/SSLoginGen.css"> </head> <?php if ($_SERVER['REQUEST_METHOD'] == 'POST') { if (isset($_POST['login'])) { //user logging in require 'Custlogin_Dbchk.php'; } else{ $message = "wait for it"; echo "<script type='text/javascript'>alert('$message');</script>"; } } ?> <body> <form action="CustomerLoginHTML.php" method="POST"> <center> <div class="loginbox"> <h1>Customer Login</h1> <input type="username" name="username" id="username" placeholder="Username" required/><br><br> <input type="password" name="password" id="password" placeholder="Password" required/><br><br> <input type="button" value="LOGIN" name="login"/><br><br> <a href="ResetPW.php" style="color:whitesmoke">Forgot your Password?</a><br><br> <a href="index.php"><input type="button" value="BACK TO HOME" id="home"/></a> </div> </center> </form> </body> </html>
W∴ Balboos, GHB
Поскольку мы понятия не имеем, что там внутри. CustomerLoginHTML.php мы не можем ответить.
Member 13049972
это же название страницы