I have a link like this:
http://domain.com/page.php?product=brown+rice
And then in the page.php page I GET the product:
$product = $_GET['product'];
<?php echo $product; ?>
But it only prints : brown rice without the +
How to get the + in the get method?