跳到主要內容

發表文章

目前顯示的是有「mysql」標籤的文章

Checking the Connection to my MySql Database (PHP Codes)

Checking the Connection to my MySql Database (PHP Codes)  <?php  $servername = "<<Server Name>>";  $username = "<<Your username>>";  $password = "<<Your Password>>";  $dbname = "<<Database Name>>";  // Create connection  $conn = new mysqli($servername, $username, $password, $dbname);  // Check connection  if ($conn->connect_error)  {            die("Connection failed: " . $conn->connect_error);  } echo "Connected successfully"; $conn->close();  ?>