Skip to content

Instantly share code, notes, and snippets.

View Anders87x's full-sized avatar
馃彔
Working from home

AnderCode Anders87x

馃彔
Working from home
View GitHub Profile
<?php
// Datos de conexi贸n a la base de datos
$host = 'localhost';
$db = 'nombre_de_tu_base_de_datos';
$user = 'tu_usuario';
$pass = 'tu_contrase帽a';
// Conexi贸n a la base de datos
$dsn = "mysql:host=$host;dbname=$db;charset=utf8";
$pdo = new PDO($dsn, $user, $pass);