I have this javascript query string I’m using within
a php script,
$string="getSub('subcat.php?cat='+this.value)";
it works as it is, passing the value of cat,
the challenge is, I want to attach another value, say ‘s=$s’, to the
string(making two now - cat and s), don’t know how to rightly
append this in javascript.
Ok thanks. The code is just what i posted before, i
wanted to add another value to the query string, since
it’s a javascript snippet, using & directly didnt work-i
needed to concatenate the javascript way.