<label for="testinput">Test</label>
<input type="text" SIZE=30 MAXLENGTH=255 id="testinput" value="">
ID Field: <input type="text" id="testid" value="" SIZE=5 MAXLENGTH=5">
Und so würde es korrekt aussehen, und vorallem valide!
~~~html
<input type="text" maxlength="255" name="testinput" id="testinput" value="" />
$wertAusDemFeld = $_POST['testinput']; bzw. $_GET['testinput'];