Ben bu şifre korumalı yaparak bir sayfa korumaya çalışıyorum. Ben aşağıdaki kodu kullanıyorum, ama çalışmıyor.
home.php
session_start();
// Process the POST variables
$username = $_SESSION["user_name"];
//$password = $_POST["password"];
// Set up the session variables
$_SESSION["user_name"] = $username;
if(!isset($_SESSION['user_name'])) { header('Location: login.php'); die('<a href="login.php">Login first!</a>'); }
Login.php ilgili kısmı
<?php
session_start();
// Process the POST variables
$username = $_SESSION["user_name"];
//$password = $_POST["password"];
// Set up the session variables
$_SESSION["user_name"] = $username;