Posts by Perfil Bloqueado • 71 points
6 posts
-
4
votes1
answer114
viewsQ: How to prevent a certain key from being sent to the program several times
I’m making a calculator for year-end activity, which even works normally, as long as it doesn’t exceed typing. For example, if you sum two fractional numbers, it performs the entire sum correctly,…
-
0
votes1
answer479
viewsQ: I would like to insert a javascript Alert into my action button
first the action call to exclude <?php $aux = 0; while($resultado = mysql_fetch_object($query)) { $url_alterar = "form_alterar.php?cod=".$resultado->id; $url_excluir =…
-
0
votes1
answer497
viewsA: back up mysql by date folder
I agree with what @Falion says! Risky in many ways! Some databases have code, while trying to copy system folders that contain user’s database, the intended system which is an attempt to illegally…
mysqlanswered Perfil Bloqueado 71 -
0
votes2
answers417
viewsA: How to keep the "scroll" at the bottom of the page?
yes, it helps a lot, would have to then include a DIV to be able to say what'? the elementById(n_VAR) will capture, helped a lot! Grateful function updateScroll() { var element =…
javascriptanswered Perfil Bloqueado 71 -
1
votes2
answers417
viewsQ: How to keep the "scroll" at the bottom of the page?
I need to keep the page always with scroll positioned at the end. I used that code: function scroll() { var objScrDiv = document.getElementById("ultimalinha"); objScrDiv.scrollTop =…
javascriptasked Perfil Bloqueado 71 -
-2
votes1
answer627
viewsQ: Which attribute to use for database fields working with numbers from 0 to 5?
Needed to mount a table in Mysql, where the values recorded in this table will be between 0 and 5, what attribute types within the table field should be assumed? What kind of data do we report in…