August 28-29 incident:
Some orders and payments from around 28 August are still being restored — read the incident report, or contact support if something of yours is missing. You will be asked to choose a new password at your next sign-in.
How can I use PHP to create login-controlled web pages?
Please provide this code on top your all page. Which you want to login-controlled.
First create session username or your choice then use this code...
<?php
session_start();
if(!empty($_SESSION['username'])) { }
else { header('location:login.php'); }
>Please provide this code on top your all page. Which you want to login-controlled.
First create session username or your choice then use this code...
<?php
session_start();
if(!empty($_SESSION['username'])) { }
else { header('location:login.php'); }
>
obaidul100
First create session username or your choice then use this code...
<?php
session_start();
if(!empty($_SESSION['username'])) { }
else { header('location:login.php'); }
> Please provide this code on top your all page. Which you want to login-controlled. First create session username or your choice then use this code... <?php session_start(); if(!empty($_SESSION['username'])) { } else { header('location:login.php'); } >
Are you sure you want to delete this post?