pertama buat dulu database nya dengan nama rizzshare dan tabel nya dengan nama tbl_mahasiswa. didalam tabel admin isi field nya NIM dan nama
atau seperti ini:
CREATE TABLE IF NOT EXISTS `tbl_mahasiswa` (
`NIM` int(15) NOT NULL,
`nama` varchar(60) NOT NULL,
PRIMARY KEY (`NIM`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
buat dulu file koneksi.php isi dengan script dibawah:
<?php $host ="localhost"; $user="root"; $pw=""; $db="rizzshare"; $koneksi=mysql_connect($host,$user,$pw); mysql_select_db($db,$koneksi); if($koneksi){ //echo "berhasil koneksi"; }else{ echo "Connection Error"; } ?> |
lalu buat file dengan nama index.php isi dengan script dibawah:
<html> <head> <title>rizzshare.blogspot.com</title> </head> <body> <form method="POST" action="proses.php"> <table border="0"> <tr> <th colspan="2">Input Data</th> </tr> <tr> <td>NIM</td> <td>: <input type="text" name="NIM" /></td> </tr> <tr> <td>Nama</td> <td> : <input type="text" name="nama" /></td> </tr> <tr> <td><input type="submit" name="submit" value="Simpan" /></td> </tr> </table> </form> </body> </html> |
lalu buat file yang bernama lihat.php isi dengan script dibawah ini:
<?php include("koneksi.php"); ?> <html> <head> <title>rizzshare.blogspot.com</title> </head> <body> <table border="1"> <tr> <th>N I M</th> <th>Nama</th> </tr> <?php $result = mysql_query("select * from tbl_mahasiswa"); while($data=mysql_fetch_array($result)){ ?> <tr> <td> <?php echo $data['NIM']; ?> </td> <td> <?php echo $data['nama']; ?> </td> </tr> <?php } ?> </table> <a href="index.php">Tambah Data </a> </body> </html> |
setelah itu buat file proses.php dengan script:
<?php include("koneksi.php"); $nim = $_POST['NIM']; $nama = $_POST['nama']; $query = "insert into tbl_mahasiswa values('$nim','$nama')"; $proses = mysql_query($query); echo"<a href='lihat.php'>Lihat</a></br>"; ?> |
Download:
- Download | Input with PHP(1.24KB)
0 komentar:
Post a Comment
Warning !!!
Admin dan Moderator RIZZSHARE Tidak selalu Online untuk melihat Komentar yang Masuk.
Jadi berkomentar dengan Pantas dan Layak dibaca oleh Publik. No SARA, SPAM dan Sejenisnya.
Thanks.