mirror of
https://github.com/gabrielkheisa/tugas-pjpb.git
synced 2024-11-25 13:03: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();
|
||
|
}
|