Get değişkenleri gizlenmesi

0 Cevap php

Ben böyle olsun değişkenleri kullanılarak inşa edilmiş bir url var

location.href = this.href +'?type='+ escape($('#type_of_station').html()) + '&count='+ escape($('.number_changer').attr("id").slice(-1));

Bana aşağıdaki gibi bir url verir

http://posnation.com/pre_config/pre_config_step_2.php?type=Grocery&count=2 

Aşağıdaki sayfada ben PHP ile değişkenleri kapmak

<p id="type_of_station" class="text left"><?php $_GET['type'] != "" ? print str_replace("_", " ", $_GET['type']) : print "Food Pos System" ?></p>

Bu harika çalışıyor ama url tür çirkin. Belki bu gizlemek ve hala sonraki sayfada bana uygun almak değişkenleri için bir yolu var mı

0 Cevap