this is the html:
<!--this is my best site so dont look up here and steal!-->
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=windows 1252">
</head>
<body>
<table bgcolor="white" align="center" border="1" width="400" cellpadding="10" cellspacing="0">
<tr>
<td>
<h1 align="center">Forms</h1>
<hr>
<form action="php.php" method="POST" name="form1">
<p><strong>Name</strong><br>
<input type="text" name="name" width="20">
</p>
<p><strong>Password</strong><br>
<input type="Password" name="Password" width="20">
</p>
<p><strong>Email</strong><br>
<input type="text" name="Email" width="20">
</p><br>
<hr>
<p><strong>Which OS You Using?</strong><br>
<input type="radio" name="OS" value="windows">Windows<br>
<input type="radio" name="OS" value="mac os">Mac OS<br>
<input type="radio" name="OS" value="linux">Linux<br>
<input type="radio" name="OS" value="other">Other<br>
</p>
<hr>
<p><strong>What Do You Do Often In The Computer</strong><br>
<input type="checkbox" name="Play" value="1">Play<br>
<input type="checkbox" name="Work" value="1">Work<br>
<input type="checkbox" name="Movies" value="1">Watch Movies<br>
<input type="checkbox" name="Other2" value="1">Other<br>
</p>
<hr>
<p><strong>Choose Region</strong><br>
<select name="Region" size="1">
<Option>Africa</Option>
<Option>Asia</Option>
<Option>Central America</Option>
<Option>Eastern Europe</Option>
<Option>European Union</Option>
<Option>Middle East</Option>
<Option>North America</Option>
<Option>Oceania</Option>
<Option>South America</Option>
<Option>The Caribbean</Option>
</select>
</p>
<p><strong>Tell Us Somthing About Us!</strong><br>
<textarea name="commant" cols="40" rows="4">
</textarea>
</p>
<p>
<input type="submit" name="button" value="send">
</p>
</form>
</tr>
</td>
</table>
</body>
</html>
THIS IS THE PHP:
<?php
if (isset($play)) {$play="yes";} else {$play="NO";}
if (isset($work)) {$work="yes";} else {$work="NO";}
if (isset($movies)) {$movies="yes";} else {$movies="NO";}
if (isset($other)) {$other="yes";} else {$other="NO";}
mail("Erik@Gelfat.com","Register HTML","Someone registered to your site: \n his name: $name his pass: $password \n his email: $emial \n his os: $OS \n What often he does in the computer play $play work $work watch movies $movies other $other \n his region $region \n his commant: $commant","content-type:text/plain; charset = windows-1252\r\n");
?>
and when i fill up evrything i get this:
his name: his pass:
his email:
his os:
What often he does in the computer play NO work NO watch movies NO other NO
his region
his commant: