ok I haven't used php for a long time,
and I'm running across a small problem so hopefully someone knows how to solve it.
I want to enclose a word in a string with "" brackets which is used in a javascript
the code looks like this.
print "dqm__subdesc1_".$counter." = ".$row['name'];
giving the output:
Sciencedqm__subdesc1_1 = Engineering
I would like to enclose $row['name'] in these brackets.
Is there an easy way of doing this ?
Thanks in advance