I need some help with some .php code that parses an affiliate id using question marks and, getting it to work with php script driven pages that also use question marks in their url.
Regards,
Lee
Printable View
I need some help with some .php code that parses an affiliate id using question marks and, getting it to work with php script driven pages that also use question marks in their url.
Regards,
Lee
try using & marks and tagging your variables with unique identifiers like &condomvariable=1
cheers,
Luke
example:
page.php?var1=somethin&var2=somethingelse
php code:
echo $_GET['var1'];
echo $_GET['var2'];
We use php for all our boydollars sites. What are you exactly trying to do? If you do not care about seo, you can pass the variables in the url but if seo is important to you, you should store your values in a cookie.