View Single Post
  #2  
Old 03-21-2008, 01:33 AM
  Yurij's Avatar 
Yurij Yurij is offline
Banned
 

X-Adept
  
Join Date: Jan 2008
Posts: 486
 

Default Re: Help adding a <br> tag in a php file for listed products

Quote:
Originally Posted by mmoskva
Currently I have this code in my php file:
$giftcert["message"] = "".func_get_langvar_by_name("txt_message").":\n".$ product_line;

and it currently will display something like this in the email notification:
ex. You purchased: Coffee maker E37 Dodgers 07 Baseball Cap Graphic Tee Mens


(BUT)

I would like to have a <br> tag added with each product that is listed, see example below:
ex.
You purchased:
Coffee maker E37
Dodgers 07 Baseball Cap
Graphic Tee Mens


Can someone help me out? If its easier to add a COMMA between products that would be fine for me to.
ex. You purchased: Coffee maker E37, Dodgers 07 Baseball Cap, Graphic Tee Mens

Before that line should be where the cycle would read something like:
PHP Code:
$product_line . = ...some variable

change this line, add one <br> tag - ."<br>";

PHP Code:
$product_line . = ...some variable."<br>"
Reply With Quote