How do you pass a variable into purehtml?
select 'dbr.purehtml', '<div id="' [mysql variable needs to be here] '">';
Obviously - the var to be replaced would be inside []
Thanks
Rick
How do you pass a variable into purehtml?
select 'dbr.purehtml', '<div id="' [mysql variable needs to be here] '">';
Obviously - the var to be replaced would be inside []
Thanks
Rick
I worked this out:
You can wrap items in CONCAT().
So:
'dbr.purehtml', CONCAT('<div id="',[mysql variable needs to be here],'">');
You must log in to post.