Posts by Nascimento • 21 points
3 posts
-
0
votes1
answer66
viewsQ: Insert data into database using PDO
$servidor = "localhost"; $usuario ="root"; $senha=""; $db="pdo"; $conexao = new PDO('mysql:host = localhost; dbname = pdo', $usuario,$senha); $stmt = $conexao->prepare('INSERT INTO…
-
0
votes2
answers90
viewsA: Exit error while trying to print contents of.txt file
Guys, I managed to settle here. I thank everyone who answered me. #include <stdio.h> #include <stdlib.h> #include <string.h> #include <getopt.h> typedef struct dado{ //…
-
1
votes2
answers90
viewsQ: Exit error while trying to print contents of.txt file
#include <stdio.h> #include <stdlib.h> #include <string.h> #include <getopt.h> typedef struct{ char **matriz; } Dado; void ler_agumento (Dado *dado, int argc, char **argv){…