include ('connect.php');
include ('loginchg.php');
// ログインする前に、まず自動ログインが選択されているかどうかを確認します
$query="select * from netoa. users where Urname='{$_session['Username']}' and urPassword='{$_session['Password']}'";
// oci_free_statement($stmt);
$stmt=oci_parse($conn,$ query );
$result= oci_execute($stmt);
if ($ruselt)
{
//セッション変数名がパスワードと一致する場合、自動的にログインします
header('Location: http://localhost/index. php ');
}