Is there a way to solve the following problem?
PHP Script1:
$var1 = 'Free+Online+Games';
<a href="script2.php?q=<? echo "$var1";?>" <? echo "$var1";?></a>
PHP Script2:
$var1 = @$_GET['q'] ;
$var ="link.com/rss?p=var1$&ei=UTF-8&fl=0&x=wrt";
The Problem:
By the time Free+Online+Games reach the link in script2 the +s are gone.
How can I pass the words without the +s being deleted?
Thanks.
PHP Script1:
$var1 = 'Free+Online+Games';
<a href="script2.php?q=<? echo "$var1";?>" <? echo "$var1";?></a>
PHP Script2:
$var1 = @$_GET['q'] ;
$var ="link.com/rss?p=var1$&ei=UTF-8&fl=0&x=wrt";
The Problem:
By the time Free+Online+Games reach the link in script2 the +s are gone.
How can I pass the words without the +s being deleted?
Thanks.





