السلام عليكم
لدي هذا الكود لحماية الصفحات بكلمة المرور بالسيشن session
<?php
session_start();
$pass='pass';
if(!isset($_SESSION['login'])) {$_SESSION['login']=false;}
if(isset($_POST['pass'])) {
if($_POST['pass']==$pass) {$_SESSION['login']=true;}
else {die ('Incorrect pass');}
}
if(!$_SESSION['login']):
?>
<center><h2>You need to login</h2>
<form action="" method="post">
<input type="password" placeholder="Enter Your Password" name="pass"/><br/>
<button type="submit" name="submit" value="submit">Login</button>
</form></center>
<?php
exit();
endif;
?>
<h1> here put your code html </h1></br>
<h1> test code html </h1>
وانا الان اريد تغير من السيشن الى الكوكيز فقط . change from session to cookies
ولكم جزيل الشكر.
التعليقات