Skip to content

Instantly share code, notes, and snippets.

View RobertMiguel's full-sized avatar
:shipit:
studying to code

RobertMiguel RobertMiguel

:shipit:
studying to code
View GitHub Profile
@zerobugs-oficial
zerobugs-oficial / conexao.php
Last active July 9, 2024 23:19
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) {