Posts by Douglas Gabriel • 36 points
2 posts
-
1
votes2
answers450
viewsA: Create a session in PHP
The following lines are strange to me: $_SESSION['nome'] = $nome; $_SESSION['senha'] = $senha; The variables $nome and $senha have not been instantiated, Session will be left with no data in the…
phpanswered Douglas Gabriel 36 -
1
votes2
answers259
viewsA: How to return a vector to another vector in Java?
You’re trying to do the following: vet2[]=método(parâmetros); It’s like you’re trying to access a null position of the vet2. To associate a new vector to the variable, simply name it, without…