Using this:
echo add_query_arg( 'hello', '$var', get_permalink(9) );
On the following page (permalink(9)), when I
echo $_GET['hello'];
I get $var, not the contents of the variable.
Is there a way to make sure it's a string before I add it to add_query_arg?
Thanks!