Home >Backend Development >PHP Problem >How to delete database in php
How to delete a database in php
1. First check which databases there are
2. Use php to delete test2
<?php $dbhost = 'localhost'; // mysql服务器主机地址 $dbuser = 'root'; // mysql用户名 $dbpass = 'root'; // mysql用户名密码 $conn = mysqli_connect($dbhost, $dbuser, $dbpass); if(! $conn ) { die('连接失败: ' . mysqli_error($conn)); } $sql = 'DROP DATABASE test2'; $retval = mysqli_query( $conn, $sql ); if(! $retval ) { die('删除数据库失败: ' . mysqli_error($conn)); } echo "数据库 test2 删除成功\n"; mysqli_close($conn); ?>
3. Run the php program
3. Check the database again
test2 is gone and deleted successfully!
For more PHP related knowledge, please visit PHP Chinese website!
The above is the detailed content of How to delete database in php. For more information, please follow other related articles on the PHP Chinese website!