KB IssueForm will not pass the values that are entered in its fields.
Issue DetailsWhen creating the Form Fields, the name properties was not set correctly.
Recreate IssueThis is your
<form> <textarea><textarea name"myarea" cols="45" rows="5"></textarea>Looking at the form element, you will notice that it is missing the = between the name and the "myarea".
Resolve IssueTo fix this issue, make sure that you have the = (Equal) sign placed right after the name.
<textarea name="myarea" cols="45" rows="5"></textarea>