langkah -langkah untuk membuatnya input database sederhana ini adalah
1. Buat databasa dengan nama user
2. Buat tabel seperti dibawah ini
Field | Type | Length/Values | extra | |
id | INT | 10 | auto increamen | prymery key |
nama | VARCHAR | 40 | ||
alamat | TEXT |
3. Buat script PHP
1. Script index.php
<html> <head> <title>Untitled Document</title> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> </head> <body> <form name="form1" method="post" action="proses.php"> <table width="451" border="1"> <tr> <td width="210">nama</td> <td width="225"><input name="nama" type="text" id="nama"></td> </tr> <tr> <td>alamat</td> <td><textarea name="alamat" id="alamat"></textarea></td> </tr> </table> <input type="submit" name="Submit" value="input"> </form> </body> </html> |
2. script proses.php
<?php mysql_connect("localhost","root",""); mysql_select_db("user"); if (isset($_POST['Submit'])) { $nama=$_POST["nama"]; $alamat=$_POST["alamat"]; $sql=mysql_query("INSERT INTO lokasi (nama,alamat) VALUES ('$nama','$alamat')"); if ($sql) { echo "data telah terisi di database"; } else { echo "pengisian database gagal"; } } ?> |
Jalankan script
{ 0 komentar... Views All / Send Comment! }
Posting Komentar