close ad
 
Important WebAssist Announcement
open ad
View Menu

Technical Support Forums

Free, outstanding support from WebAssist and your colleagues

rating

Only display records relevant to user

Thread began 3/22/2014 3:47 am by Mags | Last modified 3/25/2014 11:32 am by Jason Byrnes | 1311 views | 7 replies |

Mags

Only display records relevant to user

I have five different user groups (numbered 1-5) in dB column called MembershipType . Two of these user groups are Administrators (MembershipType= 1 & 5). Type 1 can view and update all user records, but Type 5 should only be able to view & update those with MembershipType=3&5.

The WADAusers recordset on the results page (set up using the DataAssist wizard) is currently:

SELECT UserID, UserEmail, UserPassword, UserFirstName, UserLastName, CompanyName, MembershipType, UserRegistrationDate
FROM users
WHERE users.userVerified = 1
ORDER BY UserLastName ASC

This displays all the user records.

I already have a session variable for MembershipType set up. How would I amend the above Recordset so that Administrator user group 1 can view as normal, but Administrator user group 5 only sees MembershipType 3 & 5?

Sign in to reply to this post

Jason ByrnesWebAssist

edit the where clause to:
WHERE users.userVerified = 1 AND (1 = paramMembershipType) OR ((paramMembershipType2 = 3 AND MembershipType = 3) OR (paramMembershipType3 = 5 AND MembershipType = 5))

then create 3 parameters as:

Name: paramMembershipType
Type: Integer
Default Value: -1
Runtime value: $_SESSION['MembershipType']

Name: paramMembershipType2
Type: Integer
Default Value: -1
Runtime value: $_SESSION['MembershipType']

Name: paramMembershipType3
Type: Integer
Default Value: -1
Runtime value: $_SESSION['MembershipType']

Sign in to reply to this post

Mags

Hi Jason

Thank you so much for that, great service as always! I had to make one slight change in the WHERE clause, last bit changed to

OR (paramMembershipType3 = 5 AND MembershipType = 3))

so that the Admin type 5 can view user group 3. All working!

Sign in to reply to this post

Jason ByrnesWebAssist

glad to hear you have it working.

Sign in to reply to this post

Mags

Spoke too soon! Because this system relies on admin approval of users, I have a separate page which shows all users awaiting approval. I copied over the above code to the recordset on that page, just changing users.userVerified = 0, however I now find that when I'm logged in as Admin user group 5, it's not working properly. It's fine for Admin user group 1, but Admin 5 sees verified and unverified members on the main page, and nothing on the approval page. Probably best if I give you the actual page details - see PM section.

Sign in to reply to this post

Jason ByrnesWebAssist

i updated the where cluase on those 2 pages to:


WHERE users.userVerified = 0 AND ((1 = paramMembershipType) OR (((paramMembershipType2 = 3 OR paramMembershipType3 = 5) AND (MembershipType = 3 OR MembershipType = 5))))

Sign in to reply to this post

Mags

Once again, thank you - works like a dream!

Sign in to reply to this post

Jason ByrnesWebAssist

you're welcome.

Sign in to reply to this post

Build websites with a little help from your friends

Your friends over here at WebAssist! These Dreamweaver extensions will assist you in building unlimited, custom websites.

Build websites from already-built web applications

These out-of-the-box solutions provide you proven, tested applications that can be up and running now.  Build a store, a gallery, or a web-based email solution.

Want your website pre-built and hosted?

Close Windowclose

Rate your experience or provide feedback on this page

Account or customer service questions?
Please user our contact form.

Need technical support?
Please visit support to ask a question

Content

rating

Layout

rating

Ease of use

rating

security code refresh image

We do not respond to comments submitted from this page directly, but we do read and analyze any feedback and will use it to help make your experience better in the future.

Close Windowclose

We were unable to retrieve the attached file

Close Windowclose

Attach and remove files

add attachmentAdd attachment
Close Windowclose

Enter the URL you would like to link to in your post

Close Windowclose

This is how you use right click RTF editing

Enable right click RTF editing option allows you to add html markup into your tutorial such as images, bulleted lists, files and more...

-- click to close --

Uploading file...