hi my question
i have to send information through the url several times
you know <a href .... php?id= $var ...>
you know the procedure.
the solution that they wouldn't see it : work with sessions i know! but i work with sessions and it's getting to complex to work with them because of the login system and more..
is there a way in php, javascript NOT to show .php?id = 2 ..
not in the statusbar when you "mouseover" the link nor in the adress bar in the webbrowser?
cuz even in this forum you can see forumid = integer...
and i don't want them to see that. so a way to encrypt the information or other suggestions? cuz if you look at hotmail.com you don't see any usefull information in the adress bar link.
is there also a way not to show that the page is actually a .php file??
greetings
and thx for readingno, that is why you can't send vital information in the url.
and why can't you use sessions? so what if you use them for the login, you can use them as much as you want.You can hide the links when you mouse over with javaScript, but they will still show up in the URL, and hiding them with javaScript only hides the status bar, they are still viewable in the source, and of course as soon as they are attached to the URL. I usually just put something vital in the session, and the rest can go in the URL.why don't you put array in session?
$_SESSION['GET']=$_GET;
then use $_SESSION['GET']['id'];
and for hotmail, well there's 3 varariable in the adress bar, maybe their id is more complex than plain integer, but it's there!
you could setup a frameset so the url is always index.html (well not in opera as it display the last open url)
or you could try to setup form so everything will be pass by POST instead of GET
as for removing the .php part, why?
i know that you can do it with the forcetype in apache server...
i have to send information through the url several times
you know <a href .... php?id= $var ...>
you know the procedure.
the solution that they wouldn't see it : work with sessions i know! but i work with sessions and it's getting to complex to work with them because of the login system and more..
is there a way in php, javascript NOT to show .php?id = 2 ..
not in the statusbar when you "mouseover" the link nor in the adress bar in the webbrowser?
cuz even in this forum you can see forumid = integer...
and i don't want them to see that. so a way to encrypt the information or other suggestions? cuz if you look at hotmail.com you don't see any usefull information in the adress bar link.
is there also a way not to show that the page is actually a .php file??
greetings
and thx for readingno, that is why you can't send vital information in the url.
and why can't you use sessions? so what if you use them for the login, you can use them as much as you want.You can hide the links when you mouse over with javaScript, but they will still show up in the URL, and hiding them with javaScript only hides the status bar, they are still viewable in the source, and of course as soon as they are attached to the URL. I usually just put something vital in the session, and the rest can go in the URL.why don't you put array in session?
$_SESSION['GET']=$_GET;
then use $_SESSION['GET']['id'];
and for hotmail, well there's 3 varariable in the adress bar, maybe their id is more complex than plain integer, but it's there!
you could setup a frameset so the url is always index.html (well not in opera as it display the last open url)
or you could try to setup form so everything will be pass by POST instead of GET
as for removing the .php part, why?
i know that you can do it with the forcetype in apache server...