I am making an html and php form to store data in mysql database.Its working fine but for small content of text like 100-200 words but i want it to store around 500 word in database,and I dont know how to do this.My html code is
<form method="post" enctype="multipart/form-data" action="">
<table>
<tr>
<td width="250">BookName</td>
<td>
<input name="bookname" type="text" id="bookname" /><br />
</td>
</tr>
<tr>
<td width="250">category</td>
<td>
<input name="category" type="text" id="category" /><br />
</td>
</tr>
<tr>
<td width="250">releases</td>
<td>
<input name="releases" type="text" id="releases" /><br />
</td>
</tr>
<tr>
<td width="250">Price</td>
<td>
<input name="price" type="text" id="price" /><br />
</td>
</tr>
<tr>
<td width="500">discription</td>
<td>
<input name="discription" type="text" id="discription" /><br />
</td>
</tr>
<tr>
<td width="250">authorName</td>
<td>
<input name="publicationName" type="text" id="publicationName" /><br />
</td>
</tr>
<tr>
and my php code is
please somebody help me.
datatypeTEXTin mysql for which you want to store large data.LONGTEXT