Masking a module being called in in the address link
This is a discussion on Masking a module being called in in the address link within the Open topics forums, part of the General category; im using php nuke 7.5 and i am wondering if there is any way to mask the adress link when ...
Masking a module being called in in the address link -
12-23-2004, 08:39 PM
im using php nuke 7.5 and i am wondering if there is any way to mask the adress link when a module is called, for example if a member clicks thier messages. the url will show;
"mysite.com/modules.php?name=Private_Messages"
instead of allowing a user to see that i would prefer it if the adress link stayed
I fear that is a natural thing with the CGI/GET method phpNuke is using for this. The CGI/POST method (typically used in forms) does not display this string of info.
You could try to hack the code and place each link within a <form> tag, giving each form a unique name= value. Although you'll need to ensure the form fields are "hidden" and their names match what nuke expects *exactly*.
This will, of course, result in one heck of a lot of <form>s on a page !!