<?php
header('content-type:text/html;charset=utf-8');
if(isset($_post['submit'])){
$username = $_post['username'];
$password = $_post['password'];
if(empty($username)||empty($password)){
header('Refresh:3;url=login.php');
echo '用户名密码不可';
exit;
}
}else{
include_once 'templates/login.html';
}
?>
問題が見つかりました。PHP 変数では大文字と小文字が区別されないということです