Hi
I am trying to create an address book as part of my studying PHP. I have tried to create some radio buttons to select family friends work etc.
<table border="0" cellpadding="0" cellspacing="5" style="border-collapse: collapse"
bordercolor="#0000FF" id="AutoNumber2">
<td width = "150px" align="right">Category :</td>
<td width = "80px" ><input type ="radio" name=\"cat_type\" value = \'family\"> Family</td>
<td width = "80px" ><input type ='radio' name='cat_type\' value = \'friends\"> Friends</td>
<td width = "80px" ><input type ='radio' name='cat_type\' value = \'work\"> Work</td>
<td width = "80px" ><input type ='radio' name='cat_type\' value = \'services\"> Services</td>
<td width = "100px" ><input type ='radio' name='cat_type\' value = \'commerce\"> Commerce</td>
</table>
When I run this I receive the following error:
Data truncated for column 'category' at row 1
Could somebody please tell me what this means and where I have gone wrong?
Many Thanks