Posts by Wendler • 508 points
60 posts
-
1
votes1
answer255
viewsQ: SQL command does not work with select
Follow my complete code: <? include("conectar.php"); $query = "select * from pagseguro ORDER BY Referencia DESC"; $result = mysqli_query($db, $query) or die(); if($_REQUEST['alterarStatus']){…
-
0
votes2
answers38
viewsQ: Problem with running SQL through FORM
Php code: if($_REQUEST['alterarStatus']){ $alterarStatus = trataaspas($_REQUEST['alterarStatus']);} if($alterarStatus=="aprovado"){ $SQL = "update ps set StatusTransacao='Aprovado' where Referencia…
-
0
votes1
answer71
viewsQ: CSS Gradient Radial
I need to convert an image to css, but I’m not able to generate her background using this radial gradient. Follow picture:…
-
1
votes3
answers651
viewsQ: sessionStorage with expiry time
I made a little script here, but I’m not getting a customization on it. I need to set an expiration time for sessionStorage. Follows below the script: <script type="text/javascript"> if…
-
0
votes1
answer81
viewsQ: Modify PHP/Mysql table
I have a monthly billing chart that displays earnings from January to December. It sums up all table values pagseguro (spine ProdValor_1). Below is the code of the table: <?php $mes = array("0",…
-
1
votes1
answer113
viewsQ: Problem with time display
Dae galera, with a little problem here, I have the following function: function atualizaHoraServidor() { var dispTime = formatarData(digital); $('#horarioServidor .horarioRelogio').text(dispTime);…
-
1
votes1
answer113
viewsQ: Error returning date
Eae you guys, beauty? I have a problem here, everything was working normally and suddenly started this problem. Follows below the function: function atualizaHoraServidor() { var dia =…
-
0
votes1
answer625
views -
1
votes3
answers707
views -
0
votes2
answers423
viewsQ: Check if the record already exists, if it exists does not change the value (MYSQL)
PHP functions <? if($_REQUEST['salva_ed']){ $sqlu="update registration set username='$username', firstname='$fname', lastname='$lname', sex='$gender', birth_date='$bdate',…