Posts by Diegosny • 11 points
2 posts
-
-1
votes1
answer39
viewsQ: My test code is as follows:
<? session_start(); $nome = filter_input(INPUT_POST, 'nome'); $_SESSION['nome'] = $nome; ?> <form action="teste.php" method="post"> <input type="text" name="nome"> <br>…
-
1
votes0
answers57
viewsQ: This and Arrow Function
Because when using Arrow Function it returns Undefined. But when using a normal function it works correctly.…