Coding proses Edit data php Diposkan oleh DhikAnime Published November 08, 2020 Post a Comment <?php include("config.php"); if (isset($_POST['simpan'])){ $id =$_POST['id']; $nama =$_POST['nama']; $alamat =$_POST['alamat']; $jk =$_PO…
Coding Form Edit php Diposkan oleh DhikAnime Published November 08, 2020 Post a Comment <?php include ("config.php"); if ( !isset($_GET['id'])){ header ('location: list-siswa.php'); } $id = $_GET['id']; $sql = "SELECT * F…
Mengcoding proses Hapus php Diposkan oleh DhikAnime Published November 01, 2020 Post a Comment <?php include ("config.php"); if (isset($_GET['id'])){ $id = $_GET['id']; $sql ="DELETE FROM calon_siswa WHERE id = $id"; $query = mysqli_query($co…
Pemberitahuan Index php Diposkan oleh DhikAnime Published November 01, 2020 Post a Comment Tambahkan sintak ini di bawah fungsi <nav> Setelah itu save kembali <?php if (isset($_GET['status'])): ?> <p> <?php if ($_GET['status'] == 'sukses'){ …
Proses Pendaftaran php Diposkan oleh DhikAnime Published November 01, 2020 Post a Comment <?php include ("config.php"); if (isset($_POST['daftar'])){ $nama =$_POST['nama']; $alamat =$_POST['alamat']; $jk =$_POST['jenis_kelamin']; $ag…
Form Pendaftaran php Diposkan oleh DhikAnime Published November 01, 2020 Post a Comment <!doctype html> <html> <head> <tittle>Form Pendaftaran</tittle> </head> <body> <header> <h3>Formulir Data Pendaftaran Siswa Baru</h3> &l…
Coding index php Diposkan oleh DhikAnime Published October 23, 2020 Post a Comment <!doctype html> <html> <head> <tittle>Pendaftaran Siswa Baru</tittle> <head> <body> <h3>MENU</h3> <nav> <ul> <li><a h…
Coding list-siswa php Diposkan oleh DhikAnime Published October 23, 2020 Post a Comment <?php include("config.php"); ?> <!doctype html> <html> <head> <tittle>Pendaftaran Siswa Baru</tittle> </head> <body> <h3>SISWA YANG …
Coding config php Diposkan oleh DhikAnime Published October 23, 2020 Post a Comment <?php $server = "localhost"; $user = "root"; $password =""; $nama_database ="db_pendaftaran"; $conn =mysqli_connect ($server,$user,$password,$nama_database…