Posts by Amanda Briena • 37 points
4 posts
-
1
votes1
answer81
viewsQ: Login enters directly via google
Good morning! I used the google login API on a website page. It takes the information and works correctly, however, even without clicking the button, it already runs the js of google directly,…
-
-1
votes1
answer116
viewsQ: "Segmentation fault" error while running C program on linux shell
I have the following program in C language: #include <stdio.h> #include <string.h> #include <stdlib.h> int main (int argc, char *argv[]){ FILE *p; char str[30], frase[]="Nome do…
-
2
votes1
answer189
viewsQ: How to take the value of an sql record and store in PHP variable
I have an sql table as follows: usuario (`matricula` varchar(20) not null primary key, `nome` varchar(45) NOT NULL, `senha` varchar(15) NOT NULL); In php I’m trying to get the name of a user who has…
-
-1
votes1
answer169
viewsQ: How to know the number of films by categories that have less than 50 films?
I have a movie chart with: -id_film, -movie name, -id_category; And another category with: id_category, category name; how do I select only the category and amount of films of those that have less…