Posts by LeonardoFangueiro • 37 points
3 posts
-
0
votes1
answer1300
viewsA: Fatal error: Uncaught Error: Call to Undefined Function listarUsuarios()
Good, You are calling a function that is inside the object "User". you need to start a new instance. $usuarioDAO = new UsuarioDAO($conexao); $usuarios = $usuarioDAO->listarUsuarios(); also need…
phpanswered LeonardoFangueiro 37 -
-2
votes1
answer64
viewsA: List the post owner and the last user you commented on. Mysql
You can do it, you need to have an attribute of the DATE or DATETIME genre, which saves you the date the post was made, everything depends on how you have built the database
-
1
votes1
answer113
viewsA: json array with javascript serialize not working
Hello, I think the problem is in the names of the inputs of the form. instead of telefone[0].numero etc.. trial telefone[0]['numero']…