Posts by Gustavo Piucco • 2,401 points
55 posts
-
-2
votes2
answers176
viewsQ: What better server side technology to serve information to cross-platform software?
We know it’s possible to access the Facebook of various clients such as browsers, android, iOS etc. I know that via browser HTTP protocol is used (obviously) with technologies such as AJAX and…
-
11
votes4
answers3455
viewsQ: Is it possible to communicate Client-Server in real time via HTTP?
Using TCP sockets I can put a server app on Listening and have clients connect and wait for requests both on the server and on the client, with the possibility of the server sending information to…
-
2
votes3
answers16948
viewsA: Mysql SELECT searching for value in another table
With the answers I searched and understood how JOIN works between the tables and managed to return the values as I wanted, follows: SELECT paginas.id, paginas.nome_pagina, paginas_categorias.nome AS…
mysqlanswered Gustavo Piucco 2,401 -
4
votes3
answers16948
viewsQ: Mysql SELECT searching for value in another table
I have 2 tables: paginas and paginas_categorias On the table paginas I have a column called id_categoria, which would be the corresponding id of the table paginas_categorias. Using this id, I wanted…
mysqlasked Gustavo Piucco 2,401 -
3
votes1
answer237
viewsQ: Ajax returns error after modifying htaccess
I modified the .htaccess with a rule for the url to be passed as the GET parameter and I handle everything on index.php: Options +FollowSymLinks RewriteEngine On RewriteCond %{REQUEST_FILENAME} !-d…