Pass content of variable to another page

If you simply just need to pass the data along, look at using $_SERVER[‘QUERY_STRING’] to get the query string sent to the page.

Thank you for that info! Just out of curiosity, if I don’t use $_SERVER[‘QUERY_STRING’], is my code a feasible alternative?

And I would still need to structure my code in the following manner in order to build the query the first time around?

page.php? if (isset($name)) {echo '&name='.$name.'';} if (isset($color)) {echo '&color='.$color.'';} if (isset($price)) {echo '&price='.$price.'';}  

Sorry for the questions, but I need to ask them.

Thanks again.

Yes, you can use what you have, it will continue to work.

Yes you can.

Ok, thanks. I just wanted to make sure.

Cheers.