Skip to content

Instantly share code, notes, and snippets.

View ThiagoSousa81's full-sized avatar
📚
A estudar novas tecnologias. Disponível !!!

Thiago Sousa ThiagoSousa81

📚
A estudar novas tecnologias. Disponível !!!
View GitHub Profile
@ThiagoSousa81
ThiagoSousa81 / conexao.php
Created December 4, 2022 01:30 — forked from zerobugs-oficial/conexao.php
Sistema de login simples (SEM CRIPTOGRAFIA) usando PHP
<?php
$usuario = 'root';
$senha = '';
$database = 'login';
$host = 'localhost';
$mysqli = new mysqli($host, $usuario, $senha, $database);
if($mysqli->error) {