php连接数据库的调试页面代码


php连接数据库的调试页面代码

<?php
header("Content-type: text/html;charset=utf-8");       //文本类型和编码格式        
 
$servername = "127.0.0.1";          //服务器地址
$username = "root";                 //数据库登录用户
$password = "12345678";             //数据库登录用户密码
$dbname = "test";                   //数据库库名
$conn = mysqli_connect($servername, $username, $password, $dbname);     //连接数据库
if(!$conn){
die("Connection failed: " . mysqli_connect_error());
}

$conn->close();                                       //关闭数据库连接
 
?>

 

原创文章,作者:Carrie001128,如若转载,请注明出处:https://blog.ytso.com/272546.html

(0)
上一篇 2022年7月9日
下一篇 2022年7月9日

相关推荐

发表回复

登录后才能评论