18 lines
251 B
PHP
Executable File
18 lines
251 B
PHP
Executable File
|
|
<?php
|
|
|
|
|
|
|
|
$conn = mysqli_connect(
|
|
'localhost', // Database host
|
|
'root', // Database username
|
|
'XmRTSMQ9', // Database password
|
|
'php_crud' // Database name
|
|
);
|
|
|
|
if (!$conn) {
|
|
die("Connection failed: " . mysqli_connect_error());
|
|
}
|
|
|
|
?>
|