for example url in the address bar http://forums.digitalpoint.com/newthread.php?do=newthread&f=37 and show this to the address bar http://forums.digitalpoint.com but still the parameters is active... Is this possible??
Not a script.. just HTML <html> <frameset cols = "*"> <frame src ="http://www.google.com/" /> </frameset> </html> HTML: The problem here is even if you go to external website just by following a link in the page, the user will still have your domain in their address bar.
Solve this by setting the target attribute for external links to "_top" to get rid of the frames, or "_blank" to open in a new window: <a href="external url" target="_top">external site</a> Code (markup): or <a href="external url" target="_blank">external site</a> Code (markup): Using frames is probably your best choice. Other options are more complex: - XMLHttp/DHTML for all links and buttons in your page - Using javascript to convert all links to a POST to / with the appropriate arguments
If you are talking about abstract script, not about DP forums, you can pass your parameters via POST method, not GET. Only GET parameters are included in URL.