View Single Post
  #6 (permalink)  
Old 01-16-2006, 02:16 PM
Deadeye's Avatar
Deadeye Deadeye is offline
Moderator
 
Join Date: Aug 2005
Location: San Diego, CA
Posts: 274
Send a message via MSN to Deadeye
I would recommend that way of doing it

You need to have that user login. Create a table of users like:

userTab
username: varchar2
password: not sure of the name
position: varchar2

example:

in the table the following info will allow me to edit a field:

username: Deadeye
password: password123
position: Staff

Staff will give me the edit button. Your page will need to query for the position of the user and then either give them that button or not.

The following will not allow me to use the edit button

username: Deadeye
password: password123
position: member

Wesley
Reply With Quote