I'm working on a character sheet generator for a game site I run and I'm constructing the first sheet we need. Ultimately the sheet needs to be saved to a database. I'm looking for feedback on the code I have so far. Eventually it needs to be able to pass every choice the User makes back to the database for storage. Any critique / tips for what I have so far would be greatly appreciated. I'm trying to figure this out on my own but I'd rather not get too far into it only to find what I have isn't going to work.
form sheet
<html>
<head>
<?php
$generation = array ( 'Generation' =>43 );
//ATTRIBUTES
$physicals = array( 'Strength' =>31, 'Dexterity' =>32, 'Stamina' =>33 );
$socials = array( 'Charisma' =>34, 'Manipulation' =>35, 'Appearance'=>36 );
$mentals = array( 'Perception' =>37, 'Intelligence' =>38, 'Wits' =>39 );
//ABILITIES
$talents = array( 'Alertness' =>1 , 'Athletics' =>2, 'Brawl' =>3 , 'Dodge' =>4 , 'Empathy'=>5 , 'Expression'=>6 ,
'Intimidation'=>7 , 'Leadership' =>8 , 'Streetwise' =>9 , 'Subterfuge' =>10 );
$skills = array( 'Animal Ken'=>11 , 'Crafts'=>12 , 'Drive' =>13, 'Etiquette' =>14 , 'Firearms'=>15 , 'Melee'=>16 ,
'Performance'=>17 , 'Security'=>18 , 'Stealth' =>19 , 'Survival'=>20 );
$knowledges = array( 'Academics'=>21 , 'Computers' =>22 , 'Finance' =>23 , 'Investigation' =>24 , 'Law' =>25 ,
'Linguistics' =>26 , 'Medicine' =>27 , 'Occult' =>28 , 'Politics' =>29 , 'Science' =>30 );
//ADVANTAGES
$virtues = array('Conscience / Conviction' =>40, 'Self-Control / Instinct' =>41, 'Courage'=>42 );
//DROP DOWN STATS MENU
$menu = "<select>
<option></option>
<option selected value>@</option>
<option>@@</option>
<option>@@@</option>
<option>@@@@</option>
<option>@@@@@</option>
<option>@@@@@@</option>
<option>@@@@@@@</option>
<option>@@@@@@@@</option>
<option>@@@@@@@@@</option>
<option>@@@@@@@@@@</option></select>";
//GENERATION
$gens = "<select>
<option>15th</option>
<option>14th</option>
<option selected value>13th</option>
<option>12th</option>
<option>11th</option>
<option>10th</option>
<option>9th</option>
<option>8th</option>
<option>7th</option>
<option>6th</option>
<option>5th</option></select>" ;
?>
<link rel="stylesheet" type="text/css" href="top_level.css" />
<title> sheet generator </title>
</head>
<body>
<form action="vtmdata.php" method="post">
<table style="text-align:justify; color:white" border="1.0">
<tr><td>Vampire: The Masquerade Sheet Generator</td></tr>
<tr>
<td>Name: <input name="playername" method="post"></td>
<td>Nature: <input name="nature" method="post"></td>
<td>Haven: <input name="haven" method="post"></td>
</tr>
<tr>
<td>Player: <input name="player" method="post"></td>
<td>Demeanor: <input name="demeanor" method="post"></td>
<td>Generation: <?php foreach ($generation as $key => $value){
echo $key. "$gens <br />";} ?></td>
</tr>
<tr>
<td>Chronicle: <input name="chronicle" method="post"></td>
<td>Clan:</td>
<td>
<tr><td>ATTRIBUTES</td></tr>
<tr>
<td>
<?php
foreach ($physicals as $key => $value){
echo $key. " $menu <br />"; }
?>
</td>
<td>
<?php
foreach ($socials as $key => $value){
echo $key. " $menu <br />"; }
?>
</td>
<td>
<?php
foreach ($mentals as $key => $value){
echo $key. " $menu <br />"; }
?>
</td>
</tr>
<tr><td>ABILITIES</td></tr>
<tr>
<td>
<?php
foreach ($talents as $key => $value) {
echo $key." $menu <br />"; }
?>
</td>
<td>
<?php
foreach ($skills as $key => $value) {
echo $key." $menu <br />"; }
?>
</td>
<td>
<?php
foreach ($knowledges as $key => $value) {
echo $key." $menu <br />"; }
?>
</td>
</tr>
<tr><td>ADVANTAGES</td></tr>
<td>
<?php
//Backgrounds here
?>
</td>
<?php
// Disciplines will go here
?>
</td>
<tr>
<td>
<?php
foreach ($virtues as $key => $value) {
echo $key." $menu <br />"; }
?>
</td>
</tr>
</table>
<input name="SUBMIT" type="submit" value="Save"></td>
</form>
</body>
</html>
variables sheet (vtmdata.php)
<?php
//CHARACTER INFORMATION AT TOP
$playername=$_POST['playername'];
$player =$_POST['player'];
$chronicle =$_POST['chronicle'];
$nature =$_POST['nature'];
$demeanor =$_POST['demeanor'];
?>