Jump to content

Hiding/cloaking url in address bar


nicsnow

Recommended Posts

Use a session-based system to verify the pervious page the user was browsing. This isn't fail-safe, but it works quiet well over all...

 

If you want the clients browser to know where to go, you have to tell it. This means the end user will probably know where they are going. Minor amounts of masking can be done using javascript, frames and other client-side effects, but you aren't really hiding anything from someone who wants to access that page directly.

Technically, you can completely hide it.

 

With sessions, just have some sort of a "counter" to track exactly where the user is.. so as they load quiz.php (or w/e), you fetch the session (if it exists, otherwise default to something) and grab the content it needs to display. In order to go on to the next section, have it re-post back to quiz.php (or w/e) updating the session and displaying the new content.

 

If you have some sort of a user-login system, just use databases to track them :-D

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.