This file contains hidden or 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 | |
// Datele de conectare (adresa_server, baza_de_date, nume si parola) | |
$hostdb = 'localhost'; | |
$namedb = 'teste'; | |
$userdb = 'username'; | |
$passdb = 'password'; | |
try { | |
// Conectare si creare obiect PDO | |
$dbh = new PDO("mysql:host=$hostdb; dbname=$namedb", $userdb, $passdb); |