I need to change the values of the SESSION's name, login and password, but I'm not getting it.
I think the problem is in this part of the code,
if(!isset($_SESSION['usuario'])){ // Se a Session não for iniciada
$nome = 'Nome do Usuário'; // Carrega esse conteúdo
$login = 'usuario'; // Carrega esse conteúdo
$senha = '123'; // Carrega esse conteúdo
}else{
if(isset($_SESSION)){ // Se a Session for iniciada
Because when I remove it, I can at least save the changes to SESSION's using WAMPSERVER.
Below is the code I'm using along with the link address so friends can check what's going on, or whatever is not happening;).
Code:
<?php
@session_start(); // Inicia a session.
if(!isset($_SESSION['usuario'])){ // Se a Session não for iniciada
$nome = 'Nome do Usuário'; // Carrega esse conteúdo
$login = 'usuario'; // Carrega esse conteúdo
$senha = '123'; // Carrega esse conteúdo
}else{
if(isset($_SESSION)){ // Se a Session for iniciada
$nome = $_SESSION["nome"];
if($nome) {
$login = $_SESSION["login"];
if($login) {
$senha = $_SESSION["senha"];
if($senha) {
}}}}}
?>
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252" />
<label>Nome do Usuário: </label><span><?php echo $nome ?></span><br /><br />
<label>Login do Usuário: </label><span><?php echo $login ?></span><br /><br />
<label>Senha do Usuário: </label><span><?php echo $senha ?></span><br /><br />
<form method="post">
<label>Nome do Usuário:</label><br />
<input type="text" name="nome" value="<?php echo $nome ?>"><br /><br />
<label>Login do Usuário:</label><br />
<input type="text" name="login" value="<?php echo $login ?>"><br /><br />
<label>Senha do Usuário:</label><br />
<input type="text" name="senha" value="<?php echo $senha ?>"><br /><br />
<input type="submit" value="Atualizar" />
</form>
<?php
$nome = $_POST["nome"];
if($nome) {
$_SESSION["nome"] = $nome ;
$login = $_POST["login"];
if($login) {
$_SESSION["login"] = $login ;
$senha = $_POST["senha"];
if($senha) {
$_SESSION["senha"] = $senha ;
header('Location:index.php');
}}}
?>
Looking forward to good tips, and thank you all for your attention. Hugs.