Posts by The_Kevin • 70 points
6 posts
-
0
votes2
answers92
viewsA: Connection between Node and Postgresql
You can use sequelize for relational databases like Postgres or Mysql. sudo yarn add sequelize in this link has the documentation for the settings then just give a sudo yarn sequelize db:create I…
-
0
votes2
answers721
viewsQ: Mysql sequelize error in Docker
I can’t connect the mysql api to Docker, but I can run mysql on Docker from the terminal index js. const db = require('../config/database'); const sequelize = new Sequelize(db) module.exports =…
-
0
votes1
answer2229
viewsQ: fatal error in mysql_select_db( )
I’m new to PHP and I am currently studying PDO, made a simple structure and has an error that I cannot identify. I have seen several examples of people using the same structure and it works.…
-
0
votes1
answer62
viewsQ: What is@in php for?
Hello, I’m a beginner in php and I came up with a question that I could not find a plausible answer on google; what is the "@" in php for? is seeing a tutorial on how the MYSQLI in php and video the…
-
-1
votes2
answers354
viewsA: How to use an external (ready) CSS style in HTML code?
use a <link rel="stylesheet" type="text/css" href="exemplo.css"> within the <head>
-
-1
votes1
answer95
viewsA: Login System with Dominio
guy... to create a login system, first you need to create a database with a table containing information such as "username" "e-mail" these things. after creating the form you need to tell the method…