php - How to hide Get data from Url -


i want hide variables url.now url showing http://www.example.com/supplier/dashbord.php?name=myrest

i want show url http://www.example.com/supplier/dashbord.php

also tried .htacces file

<ifmodule mod_rewrite.c>     rewriteengine on     rewritebase /supplier/      rewritecond %{request_filename} !-f     rewritecond %{request_filename} !-d     rewriterule ^supplier/(.*) dashbord.php?name=$1 </ifmodule> 

but it's did't work.is there solution me?

get parameters passed url.

what want post parameters, transmitted within http-body rather url , therefore invisible average user.

in php, access them $_post['var'] instead of $_get['var'], , in html-form, use method="post" instead of method="get" transmit form data within http body.


Comments

Popular posts from this blog

php - failed to open stream: HTTP request failed! HTTP/1.0 400 Bad Request -

java - How to filter a backspace keyboard input -

java - Show Soft Keyboard when EditText Appears -