Problems with form submission

i have a form i want to submit. In this form i have the following :

Paint Brushes Erasers

hello text

when i submit the form i get the “quantity”& “item” values. However, i cant get the inner text of the span “spanme”. Is there a way i can submit the value of the span with the form.
thanks

No, only form elements submit data. is a static text element.

Hi you have to pass the value of spanme through url

$spanme=Value;
PROCESS

Some thing like this

Hope this will help you

Yes ,I agree with the #2 。 And there is another Solution:
use javascript to get the span’s value
ex:
document.getElementById(“spanme”).value;

Sponsor our Newsletter | Privacy Policy | Terms of Service