I have a url that is built using get variables such as
location.href = this.href +'?type='+ escape($('#type_of_station').html()) + '&count='+ escape($('.number_changer').attr("id").slice(-1));
which gives me a url like
http://posnation.com/pre_config/pre_config_step_2.php?type=Grocery&count=2
on the next page i take variables via php
<p id="type_of_station" class="text left"><?php $_GET['type'] != "" ? print str_replace("_", " ", $_GET['type']) : print "Food Pos System" ?></p>
This works fine, but the url is ugly. Is there a way to hide this and still have get variables available to me on the next page.
source
share