Posts by helder • 27 points
5 posts
-
0
votes1
answer49
viewsQ: Duplication of generated HTML code
<html> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <title>Precetor - Perfil do aluno</title> </head> <body> <form…
-
0
votes1
answer5886
viewsQ: How to delete records from multiple tables at the same time?
I want to give delete in a student for that I want to delete the records of that same student of all the tables where he is and his image of the folder where it is was saved for that I use the…
-
0
votes2
answers89
viewsA: links between tables
thanks for your help, When I saw your answer I had already done so : $sql = "SELECT * FROM Inscricao, Aluno, EncarregadoDeEducacao WHERE Inscricao.al_id = Aluno.al_id AND EncarregadoDeEducacao.ee_id…
-
2
votes2
answers360
viewsQ: Return Divs to start position
At this time the drag3 always returns the initial position, except when it is placed in the drop1. In the complete game it has 4 drag s and 4 drop s but just 1 of each for example and give to…
-
0
votes2
answers89
viewsQ: links between tables
$sql = "SELECT * FROM Inscricao WHERE al_id = ".$_GET['idc']; $sql = "SELECT * FROM Aluno WHERE al_id = ".$_GET['idc']; $sql = "SELECT * FROM EncarregadoDeEducacao WHERE ee_id = ee_id.inscricao…