1
0
mirror of https://github.com/gabrielkheisa/tugas-pjpb.git synced 2025-04-08 13:29:13 +07:00

10 lines
136 B
PHP
Raw Normal View History

2022-12-12 16:44:21 +07:00
<?php
$connect = new mysqli("localhost","root","","validator");
if($connect){
}else{
echo "Connection Failed";
exit();
}