İşte benim kod basitleştirilmiş versiyonu
<?php session_start();
if($_GET['page'] == "login")
{ // process username/password
if(login is successful)
$_SESSION['access'] = "dev";
}
else if($_GET['page'] == "request")
{
//get some data from an xml file using simplexml
}
?>
<?php if(!isset($_SESSION['access']) { ?>
<!-- display login form. submits to this page + ?page=login -->
<?php } else { ?>
<!-- display edit form, nothing more than a textarea, a select and a submit button. -->
<!-- The form points to this page + ?page=request -->
<?php } ?>
Ben $ _SESSION ['access'] giriş yaptığınızda Ne olur doğru ayarlanmış, ama ben $ _SESSION ['erişim'] verileri almak için sayfaya tekrar veri gönderdiğinizde unset alır ve giriş formu yeniden görüntülenir alır edilir.
Ben yanlış ne yapıyorum? PHP oldukça yeni.