admin管理员组文章数量:1345096
I want to hide get variables in url
I want this
"dem/?p=user"
instead of whatever i passed like
dem/?p=user&act=stored
dem/?p=user&act=changed
dem/?p=user&act=deleted
Mates please help for me. Advance thanks.
I want to hide get variables in url
I want this
"dem/?p=user"
instead of whatever i passed like
dem/?p=user&act=stored
dem/?p=user&act=changed
dem/?p=user&act=deleted
Mates please help for me. Advance thanks.
Share Improve this question asked Nov 20, 2014 at 5:01 White MarcusWhite Marcus 3052 gold badges4 silver badges12 bronze badges 3- 2 You could do a POST to hide any variables you pass to the backend fro the URL. You could also set your information into a cookie, which the backend can read as well. – Martin Konecny Commented Nov 20, 2014 at 5:03
-
.htaccess
rewrite url – Rizier123 Commented Nov 20, 2014 at 5:04 - where would this url be seen by the user? – dandavis Commented Nov 20, 2014 at 5:08
4 Answers
Reset to default 5If you want to hide GET variables or values you should not use GET. In GET methods the data will always be send as part of the url. If you want to 'hide' the data (or not show it in the URL) from the user you should use a POST method.
You may use any one of the following:
- Use POST method instead of GET
- Use Ajax, with either POST or GET method
- Use encryption and decryption if you really wish to send secured way i.e dem/?p=ENCRYPTED_STRING. Here ENCRYPTED_STRING will have all the GET data
Obviously since you did not take the time to tell us how you page structure is and how you are storing your values I can only guess.
Server side
If you store the data on a post-redirect page you can store it in a $_SESSION
session_start();
if (isset($_SESSION['message']))
{
$_SESSION['message'] = "succes";
}
Then on your confirmation page
session_start();
echo $_SESSION['message'];
Client side
You can create hidden inputs and add these to your form, set your form to post and handle these $_POST
values on your form action page.
var x = document.createElement("INPUT");
x.setAttribute("type", "hidden");
x.setAttribute("name", "message");
form.appendChild(x);
Then on your confirmation page
if (isset($_POST['message']))
{
echo $_POST['message'];
}
modify .htaccess file to make short URLs the way you want them to look like
本文标签: javascriptHiding get variables in urlStack Overflow
版权声明:本文标题:javascript - Hiding get variables in url? - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743797834a2540759.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论