PHPでDB操作(4)
データベースの大枠ができたところで、実際に百人一首のデータを登録していきます。これをHTML/PHPを駆使していこうという話です。まず、登録のページ(touroku.html)を以下のように作成します。
<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>百人一首登録</title>
</head>
<body>
<h3>百人一首 短歌登録</h3>
<hr>
<form action="input_ok.php">
<table>
<tr><th>作者</th><td><input type="text" name="sakusya" id="sakusya" width="100" required></td></tr>
<tr><th>短歌</th><td><textarea type="text" name="tanka" id="tanka" cols="50" rows="3" required></textarea></td></tr>
</table>
<button>登録</button>
</form>
登録ボタンを押すと、input_ok.phpをロードしてデータベース登録処理を行うという段取りです。
ただ上記では少し味気ないのでCSSを当てていきます。headタグ内に
<link rel="stylesheet" href="style.css" type="text/css">
を挿入、style.cssを以下のようにします。
th{
width:80px;
height:30px;
font-size:large;
color:white;
background-color: black;
}
input{
font-size:large;
height:30px;
}
button{
margin-left: 30%;
font-size: large;
height: 30px;
width:80px;
}
touroku.htmlをブラウザで開くと以下のようになります。