in reply to Append query string

This node could use some formatting!

But if you simply want to append one string to another do this:

$str1 = "string1"; $str2 = "string2"; $str1 .= $str2; print $str1; =OUTPUT string1string2