Praktik 4
Code koneksi.php <?php $conn = mysqli_connect ( "localhost" , "root" , "" , "praktek4" ); ? > Code index.php <! DOCTYPE html > < html lang = "en" > < head > < meta charset = "UTF-8" > < meta http-equiv = "X-UA-Compatible" content = "IE=edge" > < meta name = "viewport" content = "width=device-width, initial-scale=1.0" > < title > PHP 3 </ title > </ head > < body > < form method = "post" action = "tampilan.php" > < label > nama : </ label > < input type = "text" name = "nama" >< br >< br > < label > hobi : </ label > < input type = "checkbox" name = "hobi[]" value = "Olahraga" >< label > Olahraga </ label > < ...