Add files via upload

This commit is contained in:
gapradana123
2022-12-12 17:32:27 +07:00
committed by GitHub
parent af472dbc71
commit 95e9c78d37
5 changed files with 116 additions and 0 deletions

7
list.php Normal file
View File

@@ -0,0 +1,7 @@
<?php
$connection = new mysqli("localhost","root","","validator");
$data = mysqli_query($connection, "select * from profil");
$data = mysqli_fetch_all($data, MYSQLI_ASSOC);
echo json_encode($data);