Skip to content

Instantly share code, notes, and snippets.

@adanzilla
Last active September 3, 2015 16:07
Show Gist options
  • Save adanzilla/3c45541ae195c4e5998a to your computer and use it in GitHub Desktop.
Save adanzilla/3c45541ae195c4e5998a to your computer and use it in GitHub Desktop.
PHP - PDO - MySQL Connect
<?php
$dsn = 'mysql:host=XXXX.XXXX.XXXX.XXXX;dbname=DBNAME';
$nombre_usuario = 'dbuser';
$password = 'dbpass';
$opciones = array(
PDO::MYSQL_ATTR_INIT_COMMAND => 'SET NAMES utf8',
);
$pdo = new PDO($dsn, $nombre_usuario, $password, $opciones);
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment