print( string $_string ) : string
Short description
Returns the contained value as HTML. Permitted values are a template variable or a string.
Description of this function
Examples
{%
$_array = {"Id":"100","Name":"Couch Red","Price":"400 €"};
if (array_key_exists("Price", $_array))
{
print("Der Artikel ".$_array["Name"]." kostet ".$_array["Price"]);
}
%}