Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> MySQL

เราจะเขียนสคริปต์ PHP เพื่อรับรายการฐานข้อมูล MySQL ได้อย่างไร


เราสามารถเขียนสคริปต์ PHP ต่อไปนี้เพื่อรับรายการฐานข้อมูล MySQL ที่พร้อมใช้งาน -

ตัวอย่าง

<?php
   $con = mysql_connect("localhost", "userid", "password");

   if (!$con) {
      die('Could not connect: ' . mysql_error());
   }
   $db_list = mysql_list_dbs($con);

   while ($db = mysql_fetch_object($db_list)) {
      echo $db->Database . "<br />";
   }
   mysql_close($con);
?>