I have a form with three fields two are of input type="text" and one is text area. I am not able to store the data of text area in database. HELP
<table>
<form name="email" method="post">
<tr>
<td width="90">
Email Id : <input name="Receiver1" type="text" size="70"/><br>
Subject :<input name="Sub" type="text" size="70" /><br>
<textarea cols="80" rows="30" >
</textarea>
Content:<input type="submit" name="Send" value="Send" />
</form>
<?php
require('connection.php');
if(isset($_POST['Send']))
{
$Reciever = $_POST['Receiver1'];
$Subject = $_POST['Sub'];
$text = mysql_real_escape_string($_POST['textarea']);
mysql_query("INSERT INTO EmailData VALUES ('$Reciever','$Subject', '$text')");
}