Skip to content

Instantly share code, notes, and snippets.

View tonyeric's full-sized avatar

Tony Eric tonyeric

View GitHub Profile
@zerobugs-oficial
zerobugs-oficial / conexao.php
Last active July 6, 2025 15:32
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) {
@zerobugs-oficial
zerobugs-oficial / select2_example.html
Created June 23, 2020 00:42
Exemplo de implementação simples do select2 para uma caixa selectora dos estados do Brasil
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/select2.min.css" rel="stylesheet" />
<script src="https://code.jquery.com/jquery-3.5.1.min.js" integrity="sha256-9/aliU8dGd2tb6OSsuzixeV4y/faTqgFtohetphbbj0=" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/select2.min.js"></script>
</head>
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="utf-8">
<title>Calculadora</title>
<script src="calculadora.js"></script>
</head>
<body bgcolor="beige">
<h1>Calculadora 1.0</h1>
<input type="text" id="txtValor1">