Hi guys! 
Hope someone can help with an issue I'm having. I'm an ok developer when it comes to HTML/CSS, but php forms have me a little confused.
This is a simple form I've got at the moment:
I won't be getting a shopping card for a few months yet, so in the meantime since there aren't a great deal of products I'd like to get a simple order form up.
So my problem is, when it comes to posting data, I don't know how to do the following:
If someone enters a value into the input quantity fields I'd like that to be picked up in POST, my issue is I also want the corresponding label for that quantity to be mailed also with it's quantity. So the email received will be something like this:
2 x Build Muscle 1
4 x Pre Workout Boosters
I believe getting the quantity is just a case of $product1 = $_POST['product1'], but I just don't know how to get it to bring along its label.
Hope I'm making some sense...
Thanks!

Hope someone can help with an issue I'm having. I'm an ok developer when it comes to HTML/CSS, but php forms have me a little confused.
This is a simple form I've got at the moment:
Code:
<form id="contactform" method="post" action="<?php echo $_SERVER['REQUEST_URI']; ?>">
<h4 class="productCategory">First Category</h4>
<div>
<input class="quantity" type=text name="product1">
<label for="product1">Product1</label>
</div>
<h4 class="productCategory">Second Category</h4>
<div>
<input class="quantity" type=text name="product2">
<label for="product2">Product2</label>
</div>
<div><input type="submit" value="Submit" name="cfsubmit" id="cfsubmit" /></div>
</form>
I won't be getting a shopping card for a few months yet, so in the meantime since there aren't a great deal of products I'd like to get a simple order form up.
So my problem is, when it comes to posting data, I don't know how to do the following:
If someone enters a value into the input quantity fields I'd like that to be picked up in POST, my issue is I also want the corresponding label for that quantity to be mailed also with it's quantity. So the email received will be something like this:
2 x Build Muscle 1
4 x Pre Workout Boosters
I believe getting the quantity is just a case of $product1 = $_POST['product1'], but I just don't know how to get it to bring along its label.
Hope I'm making some sense...
Thanks!
