我需要在一个页面中保留两个登录和注销表单,包括PHP和HTML,如
<html>
<body>
<form action="" method="post">
<input type="text" name="username">
<input type="submit" name="SubmitButton" value="Get in"/>
</form>
<form action="" method="post">
<input type="submit" name="logoutButton" value="Logout"/>
</form>
</body>
</html>
在PHP部分我有
<?php
if(isset($_POST['SubmitButton'])){
$inputuser = $_POST['username'];
$_SESSION['user'] = 'A';
}
if(isset($_POST['logoutButton'])){
unset($_SESSION['user']);
header('Location: http://somewhere.com/');
}
正如我所说,我必须将所有内容保存在一个页面上,但这看起来会导致POST之间发生冲突,请您告诉我如何制止并正确定位每个帖子?