Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?phP
- //koneksi database
- include "../../Config/Connection.php";
- //validasi nama lengkap tidak boleh kosong
- if(empty($_POST["nama_lengkap"])){
- header ("location:../../index.php?page=tambah_akses¬ifikasi=error1");
- }else{
- //Validasi email tidak boleh kosong
- if(empty($_POST["email"])){
- header ("location:../../index.php?page=tambah_akses¬ifikasi=error2");
- }else{
- //Validasi nomor kontak tidak boleh kosong
- if(empty($_POST["no_kontak"])){
- header ("location:../../index.php?page=tambah_akses¬ifikasi=error3");
- }else{
- //Validasi username tidak boleh kosong
- if(empty($_POST["username"])){
- header ("location:../../index.php?page=tambah_akses¬ifikasi=error4");
- }else{
- //Validasi password tidak boleh kosong
- if(empty($_POST["password"])){
- header ("location:../../index.php?page=tambah_akses¬ifikasi=error5");
- }else{
- //Validasi password tidak sama
- if($_POST["password"]!==$_POST["ulangi_password"]){
- header ("location:../../index.php?page=tambah_akses¬ifikasi=error6");
- }else{
- //Buat variabel agar singkat
- $nama_lengkap=$_POST["nama_lengkap"];
- $email=$_POST["email"];
- $no_kontak=$_POST["no_kontak"];
- $username=$_POST["username"];
- $password=$_POST["password"];
- $level=$_POST["level"];
- //Proses Submit ke database
- $entry="INSERT INTO akses (
- nama_lengkap,
- email,
- no_kontak,
- username,
- password,
- level
- ) VALUES (
- '$nama_lengkap',
- '$email',
- '$no_kontak',
- '$username',
- '$password',
- '$level'
- )";
- $hasil=mysqli_query($conn, $entry);
- if($hasil){
- header ("location:../../index.php?page=akses¬ifikasi=tambah_akses_berhasil");
- }else{
- header ("location:../../index.php?page=tambah_akses¬ifikasi=error7");
- }
- }
- }
- }
- }
- }
- }
- ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement