Example
<body>
<a href="settings.htm">Admin Settings</a>
</body>
how do I hide this link from the user?
|
How are you differentiate normal user and admin in your site. If you are using php as your server side script. Save usertype in db or session after login.
Regards iijb |
|||||||
|
|
Use a flag which sets true if its an admin and depending on the flag set the visibility if this link to false or true |
|||
|
|
<a href="settings.htm" style="display:none">Admin Settings</a>– Prasad Jadhav Nov 20 '12 at 5:55display:noneare wrong and missing the point. If you don't want users to have access, don't send the link in the first place. If you send it, any user who looks at the page source will see the link and be able to enter it in the address bar. – Jim Garrison Nov 20 '12 at 8:06