Html表单将数据提交给php。 Php将数据加载到数据库中,传递数据(在本例中为 usr )到html文档( resultpg.html )。
我需要html文档说"嗨NameOfUser," 。
包含html表单的页面的片段:
<form class="login-form" action="/form.php" method="POST">
<input type="text" name="usr" placeholder="username"/>
<input type="password" name="pwd" placeholder="password"/>
<button type=submit form="form1" value="submit">login</button>
我已重定向 form.php 以打开html,如:
if ($connect->query($query) === TRUE) {
header( 'Location: resultpg.html' );
} else {
echo "Error: " . $query . "<br>" . $connect->error;
}