0

i done a project in php i want to hide my URL in address bar how can i hide any one help me please

http://www.mysite.co.in/tempserv/bos/fm/index.php?page=reports&pageid=2&uid=109"

this is my URL i want to show to users up to index.php only like

http://www.mysite.co.in/tempserv/bos/fm/index.php How can i hide this

Bailey Parker
  • 15,599
  • 5
  • 53
  • 91

2 Answers2

0

Use POST method instead of GET. Eg.

----------- ----------- -----------
Praveen sivadasan
  • 165
  • 1
  • 2
  • 16
0

Use the POST method

<form action="#" method="post">
.......
</form>

and in the php use in an string to receive POST method

$var = $_POST['name_input'];