Is it possible to read "label" from form-field?
<label for="product1"> bread</label>
<input id="product1" name="product1" type="text" size="3">
number comes with $_GET[product1];
but how do I read the "bread"?
Or is there a way to print the "name" to form?
like:
<input name="bread" type="text" size="3">
The point would be to have same single text visible on the page, and
returned by form.
Comment