2025-05-19 11:21:45 -04:00

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());
}
?>