I have the following problem i am using the following code for a form and then processing it on another page. I get an error with code saying Undefined index: name on line 11. I think there are only two reasons it could be. One, the field is blank which isn't the case. And to a typo which as you can see below there isn't one. Anyone know why this isn't working.
Its not because they empty i have tried that but i can't find a typo anywhere. Here are my lines of code.
<td><input type="text" name="name" maxlength="13" size="14"><br /></td>
That is for the form
And
$name=$HTTP_POST_VARS['name'];
is to grap that entry.
but i get this error
Notice: Undefined index: name on line 11
Thanks
Jas