How can I get some data which until now are displayed in the URL and I
retrive them via $_GET
and I don't want them to be accessible from the User ?
Specifically I am passing the path of a directory that I want to browse thru
the URL because when the user clicks on a folder I am sending the new path
to display...
print "<a href=\"".$_SERV ER['REQUEST_URI']."&path=". $path .
rawurlencode($f ile)."\">$file</a>";
so that displays that in the URL (Note: it isn't a real link):
retrive them via $_GET
and I don't want them to be accessible from the User ?
Specifically I am passing the path of a directory that I want to browse thru
the URL because when the user clicks on a folder I am sending the new path
to display...
print "<a href=\"".$_SERV ER['REQUEST_URI']."&path=". $path .
rawurlencode($f ile)."\">$file</a>";
so that displays that in the URL (Note: it isn't a real link):
Comment