DEV Community

Gambit 👑
Gambit 👑

Posted on

Selam

    <?php 

    try {
      $db=new             PDO("mysql:host=localhost;dbname=eticaret;charset=utf8",'root','12345678');
Enter fullscreen mode Exit fullscreen mode

//echo "hit the switch!";
}

catch (PDOException $e) {

echo $e->getMessage();
Enter fullscreen mode Exit fullscreen mode

}

?>

Top comments (0)