what is wrong with this form????? i can see the name and email but not the msg??
<?PHP
echo $_POST["name"]; //works
echo $_POST["msg"]; //nothing prints out
?>
<form method="post" action="form.php" style="margin:0; padding:0">
<b>NAME:</b><br>
<input name="name" type="text" class="form" id="name">
<br>
<br>
<br style="line-height:8px">
<b>E-MAIL:</b><br>
<input name="email" type="text" class="form">
<br>
<br>
<br style="line-height:4px">
<b>MESSAGE / QUESTION /SUGGESTION:</b><br>
<textarea name="msg" cols="70 rows="6" class"Form></textarea>
<br>
<br>
<input name="submit" type="image" value="send" style="margin:0" align="top" src="images/send.png">
</form>