ID:272064
 
I have a piece of text that I use when creating HTML links, but it has the character '&' in it and the link takes it as a separator.

<a href=?_debug=getlist[item.id]&ref[item.id]>/list</a>


My question is, how would I have this code think of getlist[item.id]&ref[item.id] as a single value instead of two values (getlist[item.id] and ref[item.id])?

Edit: Erm, well, I worded this a bit weird.

What I need is for the value '_debug' in that code to be "etlist[item.id]&ref[item.id]", but & is a symbol that separates items in the HTML tag, so I get two items: getlist[item.id] and ref[item.id].
Help.

Also: does this make sense?