View Single Post
  #6  
Old 11-12-2003, 03:22 PM
 
val@valcohen.com val@valcohen.com is offline
 

Newbie
  
Join Date: Sep 2003
Location: Long Beach, CA, USA
Posts: 6
 

Default ASSIGN the value to the variable

Smarty needs to have the value of the variable "hear" assigned to it -- it can't look it up directly.

You need something like

$mail_smarty->assign("hear",$customer.hear);

in the code that CALLS the history_order.tpl template

then in the template, {$hear} will echo the value passed to it.

Without passing a value, $hear is undefined (and likely empty), which is why you don't see its value in the output.

Does this help?
__________________
X-Cart Gold 3.4.4; X-Affiliate 3.4.4; PHP 4.3.2; MySQL 4.0.15-standard; Apache 1.3.28; Red Hat Linux 7.1
Reply With Quote