|
Comments for: sascha19990316
| Message # 1030587: |
|
Date: 09/28/05 12:31
By: smallbadad Profile Subject: Removing the {} around text When you use fasttemplate when u use $tpl->assign( array( "TITLE" => "hello") ); The title returns {hello} There are two ways of removing the brackets around the title. 1)insert the brackets when u assign the array eg. $tpl->assign( array( "{TITLE}" => "hello") ); 2)in the main fasttemplates file replace : $template = ereg_replace("{$key}","$val","$template"); to $template = ereg_replace("\{$key\}","$val","$template"); Then it should remove the brackets Thank you smallbadad |
Previous Message | Next Message |


