Skip to content

Commit

Permalink
Merge pull request kokonior#789 from PCTeam002/patch-6
Browse files Browse the repository at this point in the history
Create FavMovie
  • Loading branch information
kokonior authored Oct 10, 2022
2 parents b96384f + befe669 commit 8f8a433
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions FavMovie
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
<!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>Document</title>
</head>
<body>
<H1>Film Favoritku :</H1>
<form action="" method="post" name="filmFav">
<input type="text" name="film1"><br>
<input type="text" name="film2"><br>
<input type="text" name="film3"><br>
<input type="text" name="film4"><br>
<input type="text" name="film5"><br>
<input type="text" name="film6"><br>
<input type="submit" name ="submit">
</form>
</body>
</html>
<?php
if(isset($_POST['submit'])){
echo "Film favorit ke-1 adalah : $_POST['film1']";
}
?>

0 comments on commit 8f8a433

Please sign in to comment.