Search the Knowledgebase |
Browse by Category |
|
|
|
View Articles by Category |
|
There are no sub categories
|
Version 6x Developer Patches
|
There was 1 article found in this category:
Write A Password With Your Own Custom Script
To write a password to the database using your own custom script you'll need to include the /includes/data_inserts.php file. So your script might look like this: -------- include ("idevaffiliate/includes/data_inserts.php"); $password = "something"; $password = sha1($secret_unlock_key.$password);
|