Log in

View Full Version : Change Username, update non-vb table with plugin?


bigtime
09-18-2006, 06:52 PM
Hello,

I'm working on integrating another script to use the same user table as vb. I also need the user table in the other script to have the same usernames as vb.

So, when editing a username from the vb admin, I need to also update my other table.

I tried this in the userdata_update_username hook location but it didn't work and resulted in a blank page:

$db->query_write("UPDATE review_users
SET username='$username' WHERE username='$username'");

I'm guessing that by the time I'm I'm trying to access $username it has already changed to the new edited name?

Please put me in the right direction....

Thanks,

Tim

nico_swd
09-19-2006, 12:50 PM
You need the old username or the userid, and the new name in order to get this to work. What does $username hold? The new name or the old one? Your query needs to contain two different values. It can either be the userid, or the old username. Something like this.

$db->query_write("UPDATE review_users
SET username='". $username ."' WHERE username='". $old_username ."'");


Or


$db->query_write("UPDATE review_users
SET username='". $username ."' WHERE userid = ". $userid);