Posts by tlckpl • 86 points
5 posts
-
1
votes3
answers417
viewsA: error insert data into php database
Considering that vars when non-existent are for example 0, you can do the following: check if they exist and if not, set them to 0, this error occurs because Voce ta trying to catch a post that does…
-
1
votes2
answers293
viewsA: display the user who is logging in PHP
you’re putting the variable inside quotes, separate them, and you don’t need to open the php tag again: Current: echo(' <div class="row" style="margin-left:-145%;"> <div…
-
1
votes2
answers70
viewsA: Colors changing as the monitor
What can happen are two things: The change of browser impact on the correct display of colors (which is extremely improbable, since it is a subtle change and only occurs when colors are set to…
-
3
votes1
answer830
viewsA: Pass Java value to php
Come on, first, the PHP is a language Server-Side, that is, it is executed on the server, already the Javascript is Client-side, or seje, is executed on the client’s computer, everything occurs in…
-
1
votes4
answers1118
viewsA: Automate click of button
Since you already have jQuery and need to click the button on the page load, you can use $(window).ready(function(){ // o que o botao faz }); Detail: The ready function is only called when the page…