Posts by NitrousHang • 15 points
2 posts
-
0
votes1
answer114
viewsQ: Undefined variable when trying to add a value in the session
The template.php file: HTML code: <html> ... <table border="3"> <tr> <th>Tarefas</th> <th>Descrição</th> <th>Prazo</th>…
phpasked NitrousHang 15 -
1
votes1
answer23
viewsQ: Problem with $_SESSION with $_GET displaying in unexpected result table
<?php session_start(); if(isset($_GET['nome'])){ $_SESSION['lista'][] = $_GET['nome']; $_SESSION['lista'][] = $_GET['telefone']; $_SESSION['lista'][] = $_GET['email']; } $lista = array();…
phpasked NitrousHang 15