Is it possible? I would assume it is... I would like to find out how to encrypt the private messages so they are not readable from the database, but would be readable on a user's private message screen.
If you know of how to do this, any help would be greatly appreciated.
That function will do what I asked in the initial post?
If so, I have a couple more questions... Do you (Or anybody else here) use that method, and if so, would you happen to know what modifications I'd need to make to PHP (When I say that, I mean my vBulletin PHP) files to get this to work?
I think my members would feel a lot safer about their private messages if I could get this done.
That function will do what I asked in the initial post?
If so, I have a couple more questions... Do you (Or anybody else here) use that method, and if so, would you happen to know what modifications I'd need to make to PHP (When I say that, I mean my vBulletin PHP) files to get this to work?
I think my members would feel a lot safer about their private messages if I could get this done.
use base64_encode() to encrypt message before inserting it to database
and yeah, when you encrypt msg using base64_encode(), it becomes un-readable (of course, unless you decrypt it back).