Is it possible to place the exact value of the password given during registration to an unhashed column in a different table?
How to do it?
This code still gives the md5 encryption.
PHP Code:
$vbulletin->db->query_write("INSERT INTO custom_table (uid, acct_pass) VALUES (".$db->escape_string($new_uid).", '".$db->escape_string($userinfo['password'])."');
How can I store the plain password (upon registration) to a custom table so I can call the original password anytime?