mirror of
https://github.com/gabrielkheisa/tugas-pjpb.git
synced 2025-01-19 12:53:17 +07:00
10 lines
136 B
PHP
10 lines
136 B
PHP
|
<?php
|
||
|
|
||
|
$connect = new mysqli("localhost","root","","validator");
|
||
|
|
||
|
if($connect){
|
||
|
|
||
|
}else{
|
||
|
echo "Connection Failed";
|
||
|
exit();
|
||
|
}
|