Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have been searching for a solution and still can't find it. Currently I am getting the results from a form with multiple inputs. I am using foreach loop to display the data in a table. Below is my code:

$product_title = $_POST['product_title'];
$product_code = $_POST['product_code'];
$product_size = $_POST['product_size'];
$product_qty = $_POST['product_qty'];


foreach($product_title as $key => $title){

$key_count = $key + 1;

$body_content = '<tr><td colspan="3" style="font-style:italic; 

text-decoration:underline;"><h4 style="margin:10px 0;">Item 0'.$key_count.'</h4></td></tr>
<tr><td style="font-weight:bold; width:135px;">Title</td><td>:</td><td>'.strip_tags($title).'</td></tr>
<tr><td style="font-weight:bold; width:135px;">Product Code</td><td>:</td><td>'.strip_tags($product_code[$key]).'</td></tr>
<tr><td style="font-weight:bold; width:135px;">Size</td><td>:</td><td>'.strip_tags($product_size[$key]).'</td></tr>
<tr><td style="font-weight:bold; width:135px; margin:0 0 15px 0;">Quantity</td><td>:</td><td>'.strip_tags($product_qty[$key]).'</td></tr>';

echo $body_content;

}

$email_from = $cus_email;//<== update the email address
$email_subject = "Order Form";
$email_body = '<table cellpadding="0" cellspacing="0" border="0" width="100%">
<tr><td colspan="3"><h3>Buyers Details</h3></td></tr>
<tr><td style="font-weight:bold; width:135px;">Name</td><td>:</td><td>'.$cus_name.'</td></tr>
<tr><td style="font-weight:bold; width:135px;">Email</td><td>:</td><td>'.$cus_email.'</td></tr>
<tr><td style="font-weight:bold; width:135px;">Contact Number</td><td>:</td><td>'.$cus_hp.'</td></tr>
<tr><td style="font-weight:bold; width:135px;">Mailing Address</td><td>:</td><td>'.$cus_add.'</td></tr>
<tr><td style="font-weight:bold; width:135px; margin:0 0 15px 0;">Postcode</td><td>:</td><td>'.$cus_post.'</td></tr>
<tr><td colspan="3"><h3 style="margin:30px 0 5px 0;">Order Details</h3></td></tr>';

My question is, how do I store all the results from foreach loop and parse to $email_body? Thanks in advance guys, appreciated.

Jeff.

share|improve this question
did you just want $body_content .= ... [note the .=] ? – Dagon Nov 19 '12 at 9:05
Hi Dagon, .= means concatenate? Correct me if I'm wrong, I'm still quite new to PHP. – user1462863 Nov 19 '12 at 9:08
yes, but im not 100% sure of what your actully asking so, its just a guess. – Dagon Nov 19 '12 at 9:10
I see. Yes, I need to concatenate all the result that is in the loop and "combine" the contents in the $email_body so that it will display all the data in a table. – user1462863 Nov 19 '12 at 9:11
then i don't see you need more than the .= notation. – Dagon Nov 19 '12 at 9:14
show 1 more comment

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.