Posts by João Pinho • 124 points
2 posts
-
-1
votes3
answers357
viewsA: Fix Div with Javascript
This one of yours div possesses width fixed? If you have, you can center with CSS: div.centralizada { position: fixed; width: 300px; left: 50%; margin-left: -150px; } You have to use the left with…
javascriptanswered João Pinho 124 -
1
votes1
answer165
viewsA: Doubt to get the id of a different Php and Mysql table
Put the option value with the class id. Not seeing the bank is difficult, but I suppose it is so: <option value="<?php echo $exibe['id_turma'] ?>"> <?php echo $exibe['sala'] ?>…