Add files via upload

This commit is contained in:
gapradana123
2022-12-12 16:44:21 +07:00
committed by GitHub
parent be603b91f1
commit ec754a7e10
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);