Computer >> Máy Tính >  >> Lập trình >> MySQL

Viết ví dụ thiết lập kết nối cơ sở dữ liệu MySQL bằng PHP script?


Chúng ta có thể sử dụng tập lệnh PHP sau để tạo kết nối cơ sở dữ liệu MySQL có người dùng là ‘khách’ và mật khẩu ‘khách123’.

<html>
   <head>
      <title>Connecting MySQL Server</title>
   </head>
   <body>
      <?php
         $dbhost = 'localhost:3306';
         $dbuser = 'guest';
         $dbpass = 'guest123';
         $conn = mysql_connect($dbhost, $dbuser, $dbpass);
         
         if(! $conn ) {
            die('Could not connect: ' . mysql_error());
         }
         echo 'Connected successfully';
         mysql_close($conn);
      ?>
   </body>
</html>