|
a really interesting article as i never used attribute sets yet and did not think about this usage possibilities of concat...
just one thing:
concat('create_html_header(',@title,@author,');')
should really be
concat('create_html_header(',@title,',',@author,');')
should it not?
|