Skip to content

Instantly share code, notes, and snippets.

@SectionOne
SectionOne / latihan_login.php
Last active May 15, 2025 13:39 — forked from jankensword/latihan_login.php
Halaman Login (Login Page)
<?php
@session_start();
unset($_SESSION['NAMA_USER']);
$_SESSION['intentos'] = 0;
if(isset($_SESSION['NAMA_USER']))
{
header("location:index.php");
}
?>
<!DOCTYPE html>