Originally Posted by
softsoldier
ok i did it, now its adding into the new table, one last question, why is it using such an odd password? is it the $Salt method? cause i have everything else working great, exept the password. after this is finished i should have a perfectly working register script for the website and game.
cant i change the password to just use md5? cause the website uses just md5 or will that mess with the ingame server?
---update---
well switching my password to md5 makes the account unusable, so i guess id have to try to make the website read the password x.x this is the last thing i need before this can be complete xd
unless i was to add another form like, use the same "repeat password" but when they do repeat password, it actually sends the password in md5 to the second table
---final update---
finished, what i did was i added, "$Repass = md5($Pass)" above salt, and when i used the insert into method, i used $Repass instead of $salt, so $salt is for the gameserver and $Repass is for the md5 encryption for the website, and they have to match or it would give an error, its a shame i spent all day for such a simple fix, thank you all <3 i learned alot about php today xD