forked from kokonior/PHP-Projects
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathFavMovie
27 lines (26 loc) · 775 Bytes
/
FavMovie
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<!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']";
}
?>