I am using https://github.com/aehlke/tag-it fot tagging
now i want to pass those value(tags) to my php page so that i could store in database so far
i am doing the simple $tags = $_POST["myTags"];
unfortunately i am getting error thar undefined myTags
here is my html code
<tr>
<td>Tags</td>
<td><ul id="myTags" class= "ulc" name = "myTags"></ul>
</td>
</tr>
please tell me what i am doing wrong ?
or my method is incorrect
or Tagit has another way to do this ?