“PDO -Anschluss” Code-Antworten

PHP -PDO -Verbindung

$host     = "localhost";//Ip of database, in this case my host machine    
$user     = "root";	//Username to use
$pass     = "qwerty";//Password for that user
$dbname   = "DB";//Name of the database

try {
    $connection = new PDO("mysql:host=$host;dbname=$dbname", $user, $pass);
    $connection->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION);

}catch(PDOException $e)
{
  echo $e->getMessage();                         
}
Phil the ice cream man

PDO -Anschluss

$conn=new PDO("mysql:host=$host;dbname=$dbname",$user,$pass);
    // If this is your connection then you have to assign null
    // to your connection variable as follows:
$conn=null;
    // By this way you can close connection in PDO.
Borma

Pdo schließen

$pdo = null;
effset

Ähnliche Antworten wie “PDO -Anschluss”

Fragen ähnlich wie “PDO -Anschluss”

Weitere verwandte Antworten zu “PDO -Anschluss” auf PHP

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen