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.
$body_content .=... [note the .=] ? – Dagon Nov 19 '12 at 9:05