evannn
02-17-2008, 05:27 PM
Many times we may need to use the LOG OUT HASH - Let's say, share a common logout between VB and non-VB pages?
Or perhaps serve as a unique ID?
Instead of including it into a config file thru PHP, why not use mysql instead? It is a centralised location for your web apps.
Requirements: mysql 5
Create VIEW vw_usernamelist AS (select userid,username,
md5(concat(userid,salt,'<YOUR VB LICENSE CODE>')
) AS logouthash from user order by userid)
Usage:
select logouthash from vw_usernamelist where userid='12345'
Or perhaps serve as a unique ID?
Instead of including it into a config file thru PHP, why not use mysql instead? It is a centralised location for your web apps.
Requirements: mysql 5
Create VIEW vw_usernamelist AS (select userid,username,
md5(concat(userid,salt,'<YOUR VB LICENSE CODE>')
) AS logouthash from user order by userid)
Usage:
select logouthash from vw_usernamelist where userid='12345'