I work in an application with CodeIgniter and I have the problem that when I reload the page or call another controller I lose the values of the session variables.
I think so:
$nuevoUsuario = array(
'usuario' => $this->...
I am trying to hide a php using $_SESSION but it seems that it does not pass the first file. Here I show my files:
ajax.php
$('.button').click(function(){
var value = $('#valor').val()
$.ajax({
type: "POST",...
I have the management of a store and when I want to see the contents of the car Laravel is asking me to log in, the route was not protected with this validation and I do not know what can happen, this is the view controller for that action
pub...
I am working on an application that has an object called SessionContext, this object has session variables that are sometimes persistent, inside the application (I did not do it myself) there are many get and Set for example:
var ctx = new Ses...
Hello friends of the community.
I am very new and I have a doubt.
Inside a Servlet I have a message that I have to receive in a Java Class Controller to display it visually. From the servlet I send it with the following code:
FacesContex...
Best regards, I would like to please help me with the following:
I have the following values in session, what I want is to add the amount when the codes are equal
Array
(
[0] => stdClass Object
(
[Insumo] => TA...
I need to know if a session is active or not. I have three pages .php :
-Administration.php
-Comparador.php
-App.php
The App.php page has an access form that connects to the application through a AJAX request. So far I c...
I want to do a php counter that eliminates the session $_SESSION["error"] if a time has passed N. $_SESSION["error"] is accumulating the counts, 1, 2, etc.
The problem is that the first time I see the echo returned the al...
hi greetings I would like to know if someone could help me, what happens is that I am developing an online store in which after saving my shopping cart in my bd, haora was born the need to edit the data of the cart that I keep in the bd, I have...