Posts by Pedro • 101 points
2 posts
-
7
votes3
answers1297
viewsQ: How to delete the last record from a table?
I was using the following code in mysql: delete from aluno where id=(select MAX(id) from aluno); But the following error appears: Error Code: 1093. You can’t specify target table 'student' for…
-
1
votes2
answers250
viewsQ: How can I receive names via a text field in an HTML page and save them to an array in the browser’s Local Storage?
I need help finishing function logic: <form name="form1" onsubmit="submeter()"> Nome: <input type="text" id="nome" value="" onkeyup="validarNome()"/><br/><br/> Idade:…