2
- Qoşuldu
- 6 Sen 2022
- Mesajlar
- 142
- Reaksiya hesabı
- 27
- Xallar
- 28
salam, bu gün qısa formada php və pdo istifadə edərək verilənlər bazasıyla necə bağlantı qurmaq olar onu göstərəcəm.
PHP:
<?php
class DB {
public $qur;
function __construct (){
try {
$this->qur=new PDO("mysql:host=localhost;dbname=sizinverilenlerbazaniz","user","sifre");
$this->qur->setAttribute (PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION);
}
catch (PDOException $e){
echo $e->getMessage ();
}
}
}
?>