Jessica Posted January 14, 2008 Share Posted January 14, 2008 I posted on Smarty's forums and no one has responded yet: I have tried several versions of this, and nothing works. I want carDesc to have a string, the year make and model, which are values of $car. I can print them out normally, but all of these attempts to make one variable fail. I also cannot use the $car object's toString method, so I am at a loss. Code: {assign var=carDesc value='$car->year $car->make $car->modelDesc'} {assign var=carDesc value=`$car->year $car->make $car->modelDesc`} {assign var=carDesc value='{$car->year} {$car->make} {$car->modelDesc}'} {assign var=carDesc value=`{$car->year} {$car->make} {$car->modelDesc}`} I even tried making a toString wrapper so I could use the internal toString and that fails too! Code: {assign var=carDesc value=$car->toString()} Help! Link to comment https://forums.phpfreaks.com/topic/85908-smarty-trouble-assigning/ Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.