Posts by Tiago Gonçalves • 141 points
9 posts
-
-2
votes2
answers129
viewsQ: Error in viewing multiple Google Maps markers PHP, JS, HTML
I’m trying to make a Google Maps map that shows the location of a garbage dump, information that is contained in the form of coordinates, in a database, and the weight of the dump, also contained in…
-
0
votes1
answer59
viewsQ: Error in IF condition
I’m doing a program in PHP but I’m having a problem. I want when $user_info is the same as Tiago Goncalves, to show the user’s image. The truth is that all 3 images are shown on the website. HTML…
-
-1
votes2
answers861
viewsQ: Connection to db SQLITE and SELECT * FROM reciclagem_data WHERE $variable
I am making a program that allows the user to enter the ID of the person in question and later shows in a table all the data of it. So far, I have these two codes: <!doctype html> <html…
-
0
votes1
answer34
viewsQ: placeholder for sql varchar
I’m making a program that reads the output of Arduino and sends to a SQLITE3 database. You’re making this mistake: cursor.execute("INSERT INTO reciclagem_data (personID, nome) VALUES (%s,%s)",…
-
3
votes1
answer234
viewsA: How to make a multilingual website?
If you watch carefully, Blogspot, Facebook, Google, Amazon mainly, all these multinational companies have different directories for different languages. What you can do is on your website, make a…
-
0
votes1
answer137
viewsQ: Syntax error in if and Elif systems
while True: ret,img=cam.read(); gray=cv2.cvtColor(img,cv2.COLOR_BGR2GRAY) faces=faceDetect.detectMultiScale(gray,1.3,5); for (x,y,w,h) in faces: cv2.rectangle(img,(x,y),(x+w,y+h),(0,0,255),2) id,…
-
1
votes1
answer75
viewsQ: Python language format function in C#
int varvalor; int var01 = varvalor * 1; Console.Write("Digite um número para ser multiplicado: "); var01 = Convert.ToInt32 (Console.ReadLine()); Console.WriteLine(); I wanted to write on…
-
9
votes1
answer63630
viewsQ: What is the function of getch(); and conio. h library?
What is the function for getch();? What’s the library for conio.h; what is the use? For example in a code like this: #include <stdio.h> #include <conio.h> int main() { printf("Hello…
casked Tiago Gonçalves 141 -
3
votes3
answers69
viewsQ: Program does not meet expected flow by reading and printing input
#include <stdio.h> #include <stdlib.h> int main() { int num1, num2, num3; printf("Digite o numero A e numero B para saber o resto da divisao resultante da divisao entre eles:\n");…