<html>
<head>

<title>add_fligh.htmlヨーロッパ便時刻表データ追加フォーム</title>
<meta http-equiv="Content-type" content="text/html; charset=UTF-8">
<link href="style.css" rel="stylesheet" type="text/css">
</head>

<body>
<h3>★欧州路線時刻表(①入力画面)★</h3>
<p>
<a href="added_flight.php">②データ追加結果へ</a> &gt;
<a href="del_flight.php">③データ削除へ</a> &gt;
<a href="delled_flight.php">④データ削除結果へ</a> &gt;
<a href="00_flight.php">⑤全データ表示へ</a>&gt;
<a href="add_flight_sea.php">⑥検索画面へ</a>

</p>

<p>フォームから追加データを入力し<br />
データを表示させるファイル(added_flight.php)にactionで送信します</p>

<form action="added_flight.php" method="post">
出発地:<input type="text" name="dep_place"><br />
到着地:<input type="text" name="arr_place"><br />
出発時刻:<input type="text" name="dep_time"><br />
到着時刻:<input type="text" name="arr_time"><br />
航空会社:<input type="text" name="airline" maxlength="3"><br />
<input type="reset" value="クリア">&nbsp;<input type="submit" value="登録">
</form>

</body>
</html>