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

12
adddata.php Normal file
View File

@@ -0,0 +1,12 @@
<?php
include 'conn.php';
$nama = $_POST['nama'];
$email = $_POST['email'];
$password = $_POST['password'];
$wallet = $_POST['wallet'];
$connect->query("INSERT INTO profil (nama, email, password, wallet) VALUES ('".$nama."','".$email."','".$password."','".$wallet."')")
?>