Posts by Raiff Santos • 16 points
3 posts
-
0
votes1
answer99
viewsA: I can’t do the form Ubmit!
I could not run your code here for lack of time, but what was missing was you take the form ID. <form method='post' action='GG.php' id="formid"> In javascript you take this id and assign it to…
-
0
votes3
answers101
viewsA: Mysql printing multiple times
You can solve this problem with the Mysql DISTINCT command after SELECT. SELECT DISTINCT * FROM locadora.cliente, locadora.endereco However I recommend that you improve your consultation. SELECT…
-
0
votes2
answers426
viewsA: Problem creating table in Mysql
For DOUBLE fields it is not necessary to set the size as in the VARCHAR(255) field which is its maximum character size, if you need to use more than 255 characters use the TEXT type. Another…