I am facing a problem using arrays. I want to loop an array withing a string.
Here is my Array
Array
(
[0] => Product: 5 M Steel Pontoons: Quantity 10
[1] => Product: 6.7 M Steel Pontoons: Quantity 15
)
I want to iterate this array between this string.
$message = "<p> Name = $name</p>
<p>Email = $email</p>
<p>Subject= $subject</p>"
So that the string would look like this
$message = "<p> Name = $name</p>
<p>Email = $email</p>
<p>Product: 5 M Steel Pontoons: Quantity 10</>
<p>Product: 6.7 M Steel Pontoons: Quantity 15</p>
<p>Subject= $subject</p>"
Any one who can help???