Posts by Marcos Souza • 26 points
5 posts
-
0
votes1
answer61
viewsA: Translation of a website without cms
Nathan, there used to be a Google translator feature that was possible to include a button but was removed, so if your site is static maybe creating an html page in another language would be faster,…
-
1
votes3
answers503
viewsA: I cannot display the output of a SELECT COUNT (MYSQL) in the HTML page
Thiago, Ali in sql you need to determine an alias (example: total) to Count and then call $lista_pendentes['total'].
-
0
votes1
answer46
viewsA: JSON does not show up when I re-file
Caio, maybe you need to find out first where the error occurs, try to include an echo in each line to see how far your application reaches.
-
0
votes2
answers151
viewsA: How to center a text on the image side example below
You can use the float:left <link rel="stylesheet" type="text/css" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css"> <section…
-
0
votes4
answers38774
viewsA: Sequential numbering of query results
Following the example above, I only did a treatment to display the first one that diverges from the id in the table. SET @contador := 0; select linha,id from (SELECT @contador := @contador + 1 AS…