Last active
October 19, 2017 15:16
-
-
Save szagot/bb2a1a6939f00c52fb0ed9b4623e3b5f to your computer and use it in GitHub Desktop.
Exemplo de um arquivo de conexão
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Arquivo para conexão do BD | |
*/ | |
// Setando variáveis do BD | |
$dbName = 'nome_do_bd'; | |
$host = 'localhost'; | |
$user = 'root'; | |
$pass = ''; | |
try { | |
// Conectando | |
$conn = new PDO( "mysql:host={$host};dbname={$dbName}", $user, $pass ); | |
} catch( Exception $e ){ | |
// Em caso de erro | |
die( "Não foi possível conectar ao BD. Detalhe: {$e->getMessage()}" ); | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
// Chamando o conector. Copie essa linha para todos os arquivos que usarão o banco de dados | |
require_once 'conecta.php'; | |
// Pegando uma lista qualquer | |
$pessoas = $conn->query( 'SELECT id, nome, email FROM pessoa' ); | |
// Configura o tipo de saída | |
header( 'Content-type: text/html; charset=utf8' ); | |
// Lê linha a linha da consulta | |
while( $pessoa = $pessoas->fetch() ){ | |
echo | |
"ID: {$pessoa['id']} | " . | |
"Nome: {$pessoa['nome']} | " . | |
"Email: {$pessoa['email']} <br>"; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment