Can I do a redirect and pass variables? Would the code like this work?
$variables="?keyword=dogs&id=324"; header('location: http://www.mysite.com'.'$variables');
Yes, it would work, and remember to exit or die if there's more code after the header you don't want to run into.
Or you can just type in:
header('location: http://www.mysite.com?keyword=dogs&id=324');
And pass them like that. You're not "passing variables" - you're just specifying where to redirect to.
Thanks!
You're welcome. Post other problems and such to the appropriate forums and I'll try my best to help you out!