【PHP】MySQL原生PHP操作-天龙八步

<?php

//1、第一步【建立连接】
$conn = mysqli_connect('localhost','root','123456') or die('数据库连接失败!');

//2、第二步【选择数据库】

猜你喜欢

转载自blog.csdn.net/weiguang102/article/details/125994171