kirimKomentar.php 243 Bytes EditWeb IDE 1 2 3 4 5 6 7 8 <?php include "config/koneksi.php"; $nama=ucwords(strtolower($_POST['nama'])); mysql_query("INSERT INTO komentar (nama,komentar,waktu) value ('$nama', '$_POST[komentar]', NOW())") or die(mysql_error()); header('location:index.html'); ?>